-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
51 lines (44 loc) · 1.45 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
[package]
name = "zk_notary"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-web = "4.0"
tlsn-prover = { git = "https://github.com/vixuslabs/tlsn", features = ["tracing"] }
tlsn-verifier = { git = "https://github.com/vixuslabs/tlsn" }
tlsn-core = { git = "https://github.com/vixuslabs/tlsn"}
tlsn-tls-core = { git = "https://github.com/vixuslabs/tlsn"}
tlsn-tls-client = { git = "https://github.com/vixuslabs/tlsn"}
notary-server = { git = "https://github.com/vixuslabs/tlsn"}
mpz-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "ecb8c54" }
futures = "0.3"
tokio = { version = "1", features = [
"rt",
"rt-multi-thread",
"macros",
"net",
"io-std",
"fs",
] }
tokio-util = "0.7"
tracing = "0.1"
tracing-subscriber = "0.3"
hyper = { version = "1.1", features = ["client", "http1"] }
hyper-util = { version = "0.1", features = ["full"]}
http-body-util = "0.1"
chrono = "0.4"
p256 = { version = "0.13", features = ["ecdsa"] }
elliptic-curve = { version = "0.13.5", features = ["pkcs8"] }
webpki-roots = "0.23"
async-tls = { version = "0.12", default-features = false, features = [
"client",
] }
serde = { version = "1.0.147", features = ["derive"] }
serde_json = "1.0"
eyre = "0.6.8"
rustls = { version = "0.21" }
rustls-pemfile = { version = "1.0.2" }
tokio-rustls = { version = "0.24.1" }
dotenv = "0.15.0"
url = "2.5.0"