-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (44 loc) · 1.04 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
[package]
name = "grpc-worker"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "^1.0"
async-std = "^1.13"
async-stream = "^0.3"
rand = "^0.8.5"
tokio = "^1.41.0"
tokio-stream = "^0.1"
tonic = { version = "^0.12", features = [
"transport",
"tls",
"tls-roots",
"tls-webpki-roots",
] }
tracing = "^0.1"
tonic-build = "^0.12"
prost = "^0.13"
prost-types = "^0.13"
hex = "0.4.3"
serde = "1.0.215"
serde_json = "1.0.133"
base64 = "0.22.1"
elliptic-curve = "0.13.8"
ethers-core = "2.0.14"
## TODO: fix by upgrading version and move to alloy
generic-array = "^0.14"
jwt = "0.16.0"
ethers = { git = "https://github.com/Lagrange-Labs/ethers-rs", default-features = false, features = [
"rustls",
], branch = "get-proof-0x" }
redact = "0.1.10"
k256 = { version = "0.13", default-features = false }
component = "0.1.1"
rust-analyzer = "0.0.1"
rustls = { version = "^0.23.19", features = ["ring"] }
[build-dependencies]
miette = { version = "7.2.0", features = ["fancy"] }
prost = "0.13.3"
prost-types = "0.13.3"
protox = "0.7.1"
tonic-build = "0.12.3"