Skip to content

Commit 9f045ea

Browse files
committed
Refilling local node with RGB assets
1 parent 097065e commit 9f045ea

26 files changed

+873
-32
lines changed

Cargo.lock

+239-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+7-3
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ amplify_derive = "~2.3.0"
4444
lnpbp = { git = "git://github.com/LNP-BP/rust-lnpbp", features = ["lnp", "url", "websockets"] }
4545
lnpbp_derive = { git = "git://github.com/LNP-BP/rust-lnpbp" }
4646
lnpbp_services = { git = "git://github.com/LNP-BP/rust-lnpbp" }
47+
rgb_node = { git = "git://github.com/LNP-BP/rgb-node", features = ["client", "fungibles"] }
4748
# Rust language
4849
lazy_static = "~1.4.0"
4950
nix = { version = "~0.19.0", optional = true }
@@ -79,6 +80,7 @@ amplify = "~2.3.0"
7980
amplify_derive = "~2.3.0"
8081
lnpbp = { git = "git://github.com/LNP-BP/rust-lnpbp", features = ["lnp", "url", "websockets"] }
8182
lnpbp_services = { git = "git://github.com/LNP-BP/rust-lnpbp" }
83+
lazy_static = "~1.4.0"
8284
clap = "=3.0.0-beta.2"
8385
clap_generate = "=3.0.0-beta.2"
8486
log = { version = "~0.4.8", features = ["max_level_trace", "release_max_level_debug"] }
@@ -104,12 +106,13 @@ default = ["client"]
104106
# Server is a standalone application that runs daemon
105107
server = ["node", "shell", "nix", "lnpbp_services/server"]
106108
# 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"]
108111
# Embedded is an app that contains ndoe in itself and that talks to it through
109112
# integration layer
110113
embedded = ["client", "node", "lnpbp_services/embedded"]
111114
# Command-line application feature
112-
cli = ["shell", "client", "lnpbp_services/cli", "url", "lnpbp/url"]
115+
cli = ["shell", "client", "lnpbp_services/cli"]
113116
# Required for all apps that can be launched from command-line shell as binaries
114117
# (i.e. both servers and cli)
115118
shell = [
@@ -122,7 +125,8 @@ shell = [
122125
node = ["serde", "lnpbp/keygen", "tokio", "lnpbp/tokio", "zmq", "lnpbp_services/node",
123126
"url", "lnpbp/url"]
124127
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"]
126130

127131
[package.metadata.configure_me]
128132
spec = "config_spec.toml"

0 commit comments

Comments
 (0)