-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathCargo.toml
63 lines (54 loc) · 1.75 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
[package]
name = "civkit"
license = "Apache-2.0"
version = "1.0.1"
authors = ["Antoine Riard <[email protected]>"]
description = "A Civ Kit node with Bulletin Board support"
edition = "2021"
[[bin]]
name = "civkitd"
path = "src/server.rs"
[[bin]]
name = "civkit-cli"
path = "src/client.rs"
[[bin]]
name = "civkit-sample"
path = "src/sample.rs"
[[bin]]
name = "civkit-marketd"
path = "src/services/marketd.rs"
[[bin]]
name = "civkit-notaryd"
path = "src/services/notaryd.rs"
[dependencies]
futures-channel = "0.3.28"
futures-util = "0.3.28"
lightning = { git = "https://github.com/civkit/rust-lightning.git", branch = "civkit-branch" }
lightning-net-tokio = { git = "https://github.com/civkit/rust-lightning.git", branch = "civkit-branch" }
lightning-invoice = { git = "https://github.com/civkit/rust-lightning.git", branch = "civkit-branch" }
tokio = { version = "1", features = [ "io-util", "macros", "rt", "rt-multi-thread", "sync", "net", "time" ] }
tokio-tungstenite = "0.19.0"
bitcoin = { version = "0.29.0", features = ["rand", "serde"] }
bitcoin_hashes = { version = "0.11", default-features = false }
tonic = "0.9"
prost = "0.11"
nostr = { git = "https://github.com/civkit/nostr.git", rev = "0b3af14aebc35ddfc4d41dd4cf05a60cd806cdf5" }
url = "2.4.0"
clap = { version = "4.3.8", features = ["derive"] }
serde_json = { version = "1.0" }
toml = "0.5.8"
serde_derive = "1.0"
serde = "1.0.130"
rusqlite = "0.29.0"
simplelog = "0.7.1"
dirs = "3.0.1"
log = "0.4.14"
staking_credentials = { git = "https://github.com/civkit/staking-credentials.git", rev = "91016511306fab73c9b30509285db13abb9da17d" }
reqwest = "0.11.20"
base64 = "0.21.4"
jsonrpc = "0.14.0"
rs_merkle = "1.4.1"
hex = "0.4.3"
bip32 = { version = "0.5.1", features = ["secp256k1"] }
[build-dependencies]
tonic-build = "0.9"