-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
60 lines (58 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
[package]
name = "world-id-relay"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
[dependencies]
eyre = { version = "0.6", package = "color-eyre" }
clap = { version = "4.4.8", features = ["derive", "env"] }
# https://github.com/rust-cli/config-rs/pull/597
config = { version = "0.14.0", git = "https://github.com/ewoolsey/config-rs", branch = "env_list_of_structs" }
dotenv = "0.15.0"
alloy = { version = "0.6", features = [
"providers",
"contract",
"serde",
"rpc-types-eth",
"transports",
"hyper",
"signer-local",
"signer-mnemonic",
"signers",
] }
ethers-core = "*"
alloy-signer-local = { version = "0.6" }
futures = "0.3"
hex = "0.4"
hyper = { version = "1", features = ["server", "http1", "http2"] }
tx-sitter-client = { git = "https://github.com/worldcoin/signup-sequencer", rev = "f30275b" }
rand = { version = "0.8.5", features = ["small_rng"] }
rayon = "1.10.0"
ruint = "1.11.0"
serde = { version = "1.0.214", features = ["derive"] }
serde_json = "1.0"
serde_path_to_error = "0.1.16"
telemetry-batteries = { git = "https://github.com/worldcoin/telemetry-batteries.git", rev = "aca1376" }
thiserror = "2"
tokio = { version = "1.41.0", features = ["sync", "macros", "rt-multi-thread"] }
toml = "0.8"
tracing = "0.1"
tracing-subscriber = "0.3.18"
url = "2.5.0"
futures-core = "0.3.30"
hex-literal = "0.4.1"
reqwest = { version = "0.12", features = ["json"] }
semaphore = { git = "https://github.com/worldcoin/semaphore-rs", rev = "d0d1f89", features = [
"depth_30",
] }
[dev-dependencies]
tempfile = "3.10.1"
testcontainers = "0.23"
indoc = "2.0.5"
testcontainers-modules = { version = "0.11", features = ["postgres"] }
tokio = { version = "1.41.0", features = [
"sync",
"macros",
"rt-multi-thread",
"process",
] }