-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
68 lines (57 loc) · 2.13 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
[workspace]
members = [
"ark-lib",
"ark-testing",
"aspd-rpc",
"aspd",
"aspd-log",
"bark",
"bark-cln",
"bark-json",
"stream-until",
]
resolver = "2"
# TODO(stevenroose) at some point probably move these inline
[workspace.dependencies]
#
# * EXPORTED (ECOSYSTEM)
bitcoin = { version = "0.32", features = [ "serde", "rand", "rand-std" ] }
lightning-invoice = { version = "0.32.0-rc1", features = [ "std", "serde" ] }
#TODO(stevenroose) change back when the async-https-rustls feature is released
lnurl-rs = { version = "0.8.0", git = "https://github.com/benthecarman/lnurl-rs.git", rev = "871824852c431a46976285196d403213b6069a69", features = [ "async", "async-https-rustls" ], default-features = false }
# this one is a workaround for a bug in lnurl-rs
bitcoin030 = { package = "bitcoin", version = "0.30.2", features = [ "std" ] }
anyhow = { version = "1.0", features = [ "backtrace" ] }
log = { version = "0.4.22", features = [ "kv", "kv_serde" ] }
serde = { version = "1" }
# grpc clients
tonic = { version = "0.12.2", features = [ "tls", "tls-roots", "gzip" ] }
#
# * INTERNAL
# rust stack
lazy_static = "=1.4.0"
fern = { version = "0.6.2", features = [ "colored" ] }
hex = "=0.4.3"
clap = { version = "4.4.18", features = [ "derive" ] }
chrono = { version = "0.4", features = [ "serde" ] }
serde_json = { version = "1", features = [ "raw_value" ] }
ciborium = "0.2.1"
# async + gRPC stack
tonic-build = "0.12.2"
prost = "0.13.2"
tokio = { version = "1.35", features = [ "full" ] }
tokio-stream = { version = "0.1.14", features = [ "sync" ] }
futures = {version = "0.3.30"}
# bitcoin
bip39 = { version = "2.0.0", features = [ "rand", "serde" ] }
miniscript = "12.2"
rand = { version = "0.8.5", features = [ "std", "std_rng" ] }
bdk_wallet = "1.0.0"
bdk_esplora = { version = "0.20.1", features = [ "std", "async-https-rustls", "tokio" ], default-features = false }
bdk_bitcoind_rpc = "0.17.1"
[profile.release]
debug = true
[patch.crates-io]
# TODO(stevenroose) remove once this PR is released, probably 0.4.23
# https://github.com/rust-lang/log/pull/643
log = { git = "https://github.com/stevenroose/log.git", branch = "borrowed-str-lifetime" }