-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
109 lines (91 loc) · 2.16 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
[package]
name = "ziggurat-xrpl"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
async-trait = "0.1"
base64 = "0.21.0"
bytes = "1"
chrono = "0.4"
fs_extra = "1.2"
governor = "0.5.1"
hex = "0.4"
histogram = "0.7.0"
home = "0.5.3"
httparse = "1.7"
metrics = "0.20.0"
metrics-util = "0.14.0"
openssl = "0.10"
pea2pea = "0.45"
prost = "0.11.6"
rand_chacha = "0.3"
serde_json = "1.0"
sha2 = "0.10"
tabled = "0.10"
tempfile = "3.3"
thiserror = "1.0"
tokio-openssl = "0.6"
toml = "0.5.9"
ziggurat-core-metrics = { git = "https://github.com/runziggurat/ziggurat-core", tag = "v0.1.2-zgm" }
ziggurat-core-utils = { git = "https://github.com/runziggurat/ziggurat-core", tag = "v0.1.0" }
[dependencies.bs58]
version = "0.4.0"
default-features = false
features = ["check", "alloc"]
[dependencies.clap]
version = "4.0.29"
features = ["derive"]
optional = true
[dependencies.futures-util]
version = "0.3"
features = ["sink"]
[dependencies.jsonrpsee]
version = "0.16.2"
features = ["server"]
optional = true
[dependencies.md5]
version = "0.7"
optional = true
[dependencies.rand]
version = "0.8"
default-features = false
features = ["getrandom", "small_rng"]
[dependencies.reqwest]
version = "0.11"
features = ["json"]
[dependencies.secp256k1]
version = "0.26"
features = ["global-context", "rand-std"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.spectre]
git = "https://github.com/niklaslong/spectre"
rev = "9a0664f"
optional = true
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tokio-util]
version = "0.7"
features = ["codec"]
[dependencies.tracing]
version = "0.1"
default-features = false
[dependencies.tracing-subscriber]
version = "0.3"
default-features = false
features = ["ansi", "env-filter", "fmt", "parking_lot", "smallvec"]
[dependencies.ziggurat-core-crawler]
git = "https://github.com/runziggurat/ziggurat-core"
rev = "1a5c2e2"
optional = true
[features]
crawler = ["clap", "jsonrpsee", "spectre", "ziggurat-core-crawler"]
performance = []
[[bin]]
name = "crawler"
path = "src/tools/crawler/main.rs"
required-features = ["crawler"]