-
Notifications
You must be signed in to change notification settings - Fork 396
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (29 loc) · 826 Bytes
/
Cargo.toml
File metadata and controls
30 lines (29 loc) · 826 Bytes
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 = "aligned"
version = "0.15.3"
edition = "2021"
[dependencies]
serde = { version = "1.0.201", features = ["derive"] }
serde_json = "1.0.117"
futures-util = "0.3.30"
tokio = { version = "1.37.0", features = [
"io-std",
"time",
"macros",
"rt",
"rt-multi-thread",
"sync",
] }
tokio-tungstenite = { version = "0.23.1", features = [
"rustls-tls-webpki-roots",
"native-tls",
] }
url = "2.5.0"
log = "0.4.21"
env_logger = "0.11.3"
clap = { version = "4.5.4", features = ["derive"] }
lambdaworks-crypto = { git = "https://github.com/lambdaclass/lambdaworks.git", rev = "efd46f0b0aea3aa95d94bba7de86cb96611b40d3", features = ["serde"] }
ethers = { version = "2.0", features = ["ws", "rustls"] }
aligned-sdk = { path = "../aligned-sdk" }
rpassword = "7.3.1"
sha3 = { version = "0.10.8" }