-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
61 lines (58 loc) · 1.81 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 = "bridge"
version = "0.1.3"
edition = "2021"
authors = ["Davidson Souza <[email protected]>"]
description = "A hiper specialized Utreexo bridge node"
license = "MIT"
repository = "https://github.com/Davidson-Souza/bridge"
readme = "README.md"
homepage = "https://github.com/Davidson-Souza/bridge"
documentation = "https://github.com/Davidson-Souza/bridge"
keywords = ["utreexo", "bitcoin", "blockchain", "rust"]
categories = ["bitcoin", "tools"]
[dependencies]
bitcoin = { version = "0.32.4", features = ["serde"] }
bitcoincore-rpc = "0.19"
bitcoin_hashes = "0.11"
rustreexo = { git = "https://github.com/mit-dci/rustreexo", rev = "91f70ef", features = ["with-serde"] }
sha2 = "0.10.6"
anyhow = "1.0.71"
kv = "0.24.0"
actix = { version = "0.13.0", optional = true }
actix-web = { version = "4.9", optional = true }
serde = "1.0.183"
actix-files = { version = "0.6.2", optional = true }
actix-session = { version = "0.7.2", optional = true }
async-stream = "0.3.5"
futures = "0.3.28"
actix-rt = "2.8.0"
hex = "0.4.3"
log = "0.4.19"
simplelog = "0.12.1"
reqwest = { version = "0.11.18", features = [
"blocking",
"rustls",
"__tls",
"__rustls",
"rustls-tls-webpki-roots",
], optional = true, default-features = false }
serde_json = { version = "1.0.128" }
actix-cors = { version = "0.6.4", optional = true }
mmap = "0.1.1"
jemallocator = "0.5.4"
starknet-crypto = { version = "0.7.2", optional = true }
clap = { version = "4.5.20", features = ["derive"] }
time = "0.3.36"
ahash = "0.8.11"
ctrlc = "3.4.5"
mio = { version = "1.0.2", features = ["net", "os-poll"] }
[features]
default = ["bitcoin", "node", "api"]
esplora = ["reqwest"]
bitcoin = []
node = []
api = ["actix", "actix-web", "actix-session", "actix-cors", "actix-files"]
shinigami = ["starknet-crypto"]
memory-leaf-map = []
[dev-dependencies]