@@ -44,6 +44,7 @@ amplify_derive = "~2.3.0"
44
44
lnpbp = { git = " git://github.com/LNP-BP/rust-lnpbp" , features = [" lnp" , " url" , " websockets" ] }
45
45
lnpbp_derive = { git = " git://github.com/LNP-BP/rust-lnpbp" }
46
46
lnpbp_services = { git = " git://github.com/LNP-BP/rust-lnpbp" }
47
+ rgb_node = { git = " git://github.com/LNP-BP/rgb-node" , features = [" client" , " fungibles" ] }
47
48
# Rust language
48
49
lazy_static = " ~1.4.0"
49
50
nix = { version = " ~0.19.0" , optional = true }
@@ -79,6 +80,7 @@ amplify = "~2.3.0"
79
80
amplify_derive = " ~2.3.0"
80
81
lnpbp = { git = " git://github.com/LNP-BP/rust-lnpbp" , features = [" lnp" , " url" , " websockets" ] }
81
82
lnpbp_services = { git = " git://github.com/LNP-BP/rust-lnpbp" }
83
+ lazy_static = " ~1.4.0"
82
84
clap = " =3.0.0-beta.2"
83
85
clap_generate = " =3.0.0-beta.2"
84
86
log = { version = " ~0.4.8" , features = [" max_level_trace" , " release_max_level_debug" ] }
@@ -104,12 +106,13 @@ default = ["client"]
104
106
# Server is a standalone application that runs daemon
105
107
server = [" node" , " shell" , " nix" , " lnpbp_services/server" ]
106
108
# Feature is required for any applications that talks to daemon processes
107
- client = [" zmq" , " lnpbp_services/client" , " lnpbp/keygen" ]
109
+ client = [" zmq" , " lnpbp_services/client" , " lnpbp/keygen" ,
110
+ " url" , " lnpbp/url" ]
108
111
# Embedded is an app that contains ndoe in itself and that talks to it through
109
112
# integration layer
110
113
embedded = [" client" , " node" , " lnpbp_services/embedded" ]
111
114
# Command-line application feature
112
- cli = [" shell" , " client" , " lnpbp_services/cli" , " url " , " lnpbp/url " ]
115
+ cli = [" shell" , " client" , " lnpbp_services/cli" ]
113
116
# Required for all apps that can be launched from command-line shell as binaries
114
117
# (i.e. both servers and cli)
115
118
shell = [
@@ -122,7 +125,8 @@ shell = [
122
125
node = [" serde" , " lnpbp/keygen" , " tokio" , " lnpbp/tokio" , " zmq" , " lnpbp_services/node" ,
123
126
" url" , " lnpbp/url" ]
124
127
serde = [" serde_crate" , " serde_with" , " serde_yaml" , " toml" ,
125
- " amplify/serde" , " lnpbp/serde" , " lnpbp_services/serde" , " chrono/serde" ]
128
+ " amplify/serde" , " lnpbp/serde" , " lnpbp_services/serde" , " chrono/serde" ,
129
+ " rgb_node/serde" ]
126
130
127
131
[package .metadata .configure_me ]
128
132
spec = " config_spec.toml"
0 commit comments