-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
117 lines (103 loc) · 2.35 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
[package]
name = "sphinx_swarm"
version = "0.1.0"
edition = "2021"
[dependencies]
bitcoin = { version = "0.29.2", default-features = false, features = [
"secp-recovery",
"serde",
"std",
] }
bollard = "0.13"
bollard-stubs = "1.42.0-rc.3"
futures-core = "0.3"
futures-util = "0.3"
serde = { version = "1.0", features = ["derive"] }
serde_derive = "1.0"
serde_json = "1.0"
serde_with = "1"
anyhow = "1"
log = "0.4"
simple_logger = "1.16.0"
rocket = { version = "0.5.0-rc.2", features = ["json"] }
thiserror = "1.0.31"
hex = "0.4.3"
base58 = "0.2.0"
once_cell = "1.15.0"
# tonic_lnd = "0.5.0"
tonic_lnd = { git = "https://github.com/Evanfeenstra/tonic_lnd", branch = "add-serde" }
prost = "0.11"
reqwest = { version = "0.11", default-features = false, features = [
"json",
"rustls-tls",
] }
base64 = "0.13"
bip39 = "1.0.1"
rand = "0.8"
bitcoincore-rpc = "0.15.0"
bitcoincore-rpc-json = "0.15.0"
dotenv = "0.15.0"
url = "2.2.2"
rsa = "0.7.2"
walkdir = "2"
tar = "0.4"
jwt = "0.16.0"
bcrypt = "0.13"
sha2 = "0.10"
hmac = "0.12"
async-trait = "0.1.64"
tonic = { version = "0.8", features = ["tls", "transport"] }
cln-grpc = { git = "https://github.com/stakwork/lightning", rev = "ba0d317e751ee04c59c2400ddff201cf29ab76aa" }
serde_yaml = "0.9"
tokio-cron-scheduler = "*"
sphinx-auther = { git = "https://github.com/stakwork/sphinx-rs.git", branch = "master" }
zip = "0.6.5"
tokio = { version = "1", features = ["full"] }
aws-config = { version = "1.1.7", features = ["behavior-version-latest"] }
aws-sdk-s3 = "1.38.0"
chrono = "0.4"
bytes = "1.0"
aws-smithy-types = "1.2.0"
tokio-util = { version = "*", features = ["io-util", "io"] }
futures = "*"
aws-sdk-ec2 = "1.72.0"
aws-sdk-route53 = "1.45.0"
[lib]
name = "sphinx_swarm"
path = "src/lib.rs"
[[bin]]
name = "perm"
path = "src/perm.rs"
[[bin]]
name = "stack"
path = "src/bin/stack/mod.rs"
[[bin]]
name = "cln"
path = "src/bin/cln/mod.rs"
[[bin]]
name = "down"
path = "src/bin/down.rs"
[[bin]]
name = "btc"
path = "src/bin/btc_test.rs"
[[bin]]
name = "btc_prod"
path = "src/bin/btc_prod.rs"
# [[bin]]
# name = "demo"
# path = "src/bin/demo/mod.rs"
# [[bin]]
# name = "test"
# path = "src/bin/test.rs"
[[bin]]
name = "cln_mainnet_test"
path = "src/bin/cln_mainnet_test.rs"
[[bin]]
name = "super"
path = "src/bin/super/mod.rs"
[[bin]]
name = "sphinx"
path = "src/bin/v1/mod.rs"
[[bin]]
name = "tome"
path = "src/bin/tome/mod.rs"