-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (28 loc) · 832 Bytes
/
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
[package]
name = "zk_stark_server"
version = "0.1.0"
edition = "2021"
[dependencies]
tokio = { version = "1.41.1", features = ["full"] }
tokio-tungstenite = "0.24"
tokio-stream = "0.1"
futures-util = "0.3" # Required for StreamExt and SinkExt
futures-channel = "0.3" # Add this line
url = "2" # Required for parsing the URL
winterfell = "0.9.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_bytes = "0.11" # Add this crate to handle byte arrays in serde
base64 = "0.22.1"
serde_with = "3.11.0"
reqwest = { version = "0.12.9", features = ["json"] }
warp = "0.3"
sha2 = "0.10"
ripemd = "0.1.3"
base58check = "0.1.0"
hex = "0.4"
stacks-rs = "0.3.3"
[dev-dependencies]
reqwest = { version = "0.12.9", features = ["json"] }
tokio = { version = "1", features = ["full"] }
serde_json = "1.0"