-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
57 lines (53 loc) · 2.17 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
[package]
name = "looper"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
postgres = { version = "0.19.7", features = ["with-chrono-0_4"]}
chrono = "0.4.30"
async-trait = "0.1.68"
base64 = "0.21.0"
bdk = { version = "0.29.0", features = ["rpc", "all-keys", "sqlite"]}
bitcoin = "0.30.1"
protobuf = "3.2.0"
reqwest = { version = "0.11", features = ["json", "blocking"] }
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.91"
config = "0.13.3"
deadpool-postgres = "0.10.5"
futures = "0.3.25"
futures-util = "0.3.25"
hex = "0.4.3"
lazy_static = "1.4.0"
lightning = { git = "https://github.com/lightningdevkit/rust-lightning", rev = "56b0c96" }
lightning-background-processor = { git = "https://github.com/lightningdevkit/rust-lightning", rev = "56b0c96" }
lightning-block-sync = { git = "https://github.com/lightningdevkit/rust-lightning", rev = "56b0c96" }
lightning-invoice = { git = "https://github.com/lightningdevkit/rust-lightning", rev = "56b0c96" }
lightning-net-tokio = { git = "https://github.com/lightningdevkit/rust-lightning", rev = "56b0c96" }
lightning-persister = { git = "https://github.com/lightningdevkit/rust-lightning", rev = "56b0c96" }
log = "0.4.17"
tokio = { version = "1.7.1", features = ["fs", "rt-multi-thread"] }
tokio-postgres = "0.7.7"
fedimint-tonic-lnd = "0.1.0"
tonic = { version = "0.6.2", features = ["transport", "tls"] }
prost = "0.9.0"
rustls = { version = "0.19.0", features = ["dangerous_configuration"] }
refinery = { version = "0.8", features = ["tokio-postgres"]}
log4rs = "1.2.0"
rand = "0.8.5"
rocket = { version = "=0.5.0-rc.3", features = ["json"]}
http = "0.2.9"
sha2 = "0.10.8"
bitcoin_hashes = "0.13.0"
diesel = {version = "2.1.0", features = ["postgres","r2d2", "chrono", "serde_json", "postgres_backend"]}
# diesel-async = { version = "0.4.1", features = ["postgres"] }
diesel_migrations = { version = "2.1.0", features = ["postgres"] }
async-std = "1.11.0"
[build-dependencies]
tonic-build = "0.5.2"
protobuf = "3.2.0"
protobuf-codegen = "3.2.0"
[dev-dependencies]
tokio = { version = "1.7.1", features = ["rt-multi-thread"] }
once_cell = "1.18.0"