-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
88 lines (81 loc) · 2.36 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
80
81
82
83
84
85
86
87
88
[package]
name = "fnn"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.5.2", features = ["derive", "env", "string"] }
clap-serde-derive = "0.2.1"
serde = { version = "1.0.197", features = ["derive"] }
serde_yaml = "0.9.32"
lightning-invoice = { version = "0.29.0" }
bitcoin = { version = "0.30.2", features = ["serde", "rand"] }
bech32 = "0.8"
rand = "0.8.5"
serde_json = { version = "1.0" }
home = "0.5.9"
ckb-sdk = "3.4"
thiserror = "1.0.58"
anyhow = "1.0.81"
tentacle = { version = "0.6.6", default-features = false, features = ["upnp", "parking_lot", "openssl-vendored", "tokio-runtime", "tokio-timer", "ws"] }
futures = "0.3.30"
once_cell = "1.19.0"
tokio-util = { version = "0.7.10", features = ["rt"] }
molecule = { version = "0.8.0", default-features = false }
ckb-types = "0.118.0"
ckb-gen-types = "0.118.0"
ckb-jsonrpc-types = "0.118.0"
ckb-chain-spec = "0.118.0"
ckb-resource = "0.118.0"
rocksdb = { package = "ckb-rocksdb", version = "=0.21.1", features = [
"lz4"
], default-features = false }
serde_with = { version = "3.7.0", features = ["macros", "base64"] }
hex = "0.4.3"
jsonrpsee = { version = "0.22", features = ["server", "macros"] }
bitflags = { version = "2.5.0", features = ["serde"] }
ckb-hash = "0.115.0"
secp256k1 = { version = "0.28.0", features = ["serde", "recovery", "rand-std"] }
musig2 = { version = "0.0.11", features = ["secp256k1", "serde"] }
ractor = "=0.9.7"
arcode = "0.2.4"
nom = "7.1.3"
regex = "1.10.5"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
socket2 = "0.5.7"
lnd-grpc-tonic-client = "0.3.0"
git-version = "0.3.9"
fiber-sphinx = "2.1.0"
strum = { version = "0.26", features = ["derive"] }
tokio = { version = "1", features = [
"io-util",
"macros",
"rt",
"rt-multi-thread",
"sync",
"net",
"time",
"signal",
] }
indicatif = "0.16"
console = "0.15.8"
bincode = "1.3.3"
[features]
default = []
portable = ["rocksdb/portable"]
[profile.release]
panic = "abort"
overflow-checks = true
[profile.dev]
panic = "abort"
[dev-dependencies]
tempfile = "3.10.1"
ckb-testtool = "0.13.2"
[lints.clippy]
needless-return = "allow"
mutable-key-type = "allow"
upper-case-acronyms = "allow"
fallible-impl-from = "allow"
expect-fun-call = "allow"
large-enum-variant = "allow"