forked from RGB-Tools/rgb-lightning-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
79 lines (74 loc) · 2.73 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[package]
name = "rgb-lightning-node"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "rgb-lightning-node"
[dependencies]
anyhow = "1.0.72"
axum = "0.6.19"
axum-extra = "0.7.5"
# axum-macros = "0.3.8" # uncomment to use debug_handler
base64 = "0.13.0"
bdk = { version = "0.28", features = ["electrum", "keys-bip39"] }
bech32 = "0.8"
bitcoin = { package = "bitcoin", version = "0.29.2" }
bitcoin-bech32 = "0.12"
bitcoin_30 = { package = "bitcoin", version = "0.30.0" }
chacha20poly1305 = { version = "0.10.1", features = ["stream"] }
chrono = "0.4"
clap = "4.3.19"
dirs = "5.0.1"
futures = "0.3"
hex = "0.3"
hyper = "0.14.27"
libc = "0.2"
lightning = { version = "0.0.115", features = ["max_level_trace"], path = "./rust-lightning/lightning" }
lightning-background-processor = { version = "0.0.115", features = ["futures"], path = "./rust-lightning/lightning-background-processor" }
lightning-block-sync = { version = "0.0.115", features = ["rpc-client"] }
lightning-invoice = { version = "0.23", path = "./rust-lightning/lightning-invoice" }
lightning-net-tokio = { version = "0.0.115" }
lightning-persister = { version = "0.0.115", path = "./rust-lightning/lightning-persister" }
lightning-rapid-gossip-sync = { version = "0.0.115" }
magic-crypt = "3.1.12"
miniscript = { version = "8.0", features = ["serde"] }
rand = "0.8.5"
reqwest = { version = "0.11", default-features = false, features = ["json", "multipart", "native-tls", "stream"] }
scrypt = "0.11.0"
serde = { version = "^1.0", features = ["derive"] }
serde_json = "1.0"
tempfile = "3.8.0"
thiserror = "1.0"
tokio = { version = "1", features = ["io-util", "macros", "rt", "rt-multi-thread", "signal", "sync", "net", "time"] }
tokio-util = { version = "0.7.4", features = ["codec"] }
tower-http = { version = "0.4.3", features = ["cors", "trace"] }
tracing = "0.1"
tracing-appender = "0.2.2"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
typenum = "1.16.0"
walkdir = "2.3.3"
zip = { version = "0.6.6", default-features = false, features = ["time", "zstd"] }
# RGB-related deps
amplify = "=4.0.1"
bp-core = "=0.10.9"
rgb-lib = "0.2.0-alpha.3"
rgb-std = "=0.10.8"
rgb-wallet = "=0.10.8"
rgb_core = { package = "rgb-core", version = "=0.10.7" }
strict_encoding = "=2.5.0"
[dev-dependencies]
dircmp = "0.2.0"
electrum-client = "0.17.0"
mime = "0.3.17"
once_cell = "1.17.1"
regex = "1.9.5"
serial_test = "2.0.0"
time = { version = "0.3.20", features = ["std"] }
tower = "0.4.13"
tracing-test = "0.2.4"
[patch.crates-io]
commit_verify = { path = "./client_side_validation/commit_verify" }
lightning = { path = "./rust-lightning/lightning" }
lightning-background-processor = { path = "./rust-lightning/lightning-background-processor"}
rgb-std = { path = "./rgb-wallet/std" }
rgb-wallet = { path = "./rgb-wallet" }