-
Notifications
You must be signed in to change notification settings - Fork 396
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (27 loc) · 808 Bytes
/
Cargo.toml
File metadata and controls
28 lines (27 loc) · 808 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
[package]
name = "aligned-sdk"
version = "0.1.0"
edition = "2021"
[dependencies]
ethers = { version = "2.0", features = ["ws", "rustls", "eip712"] }
log = { version = "0.4.21" }
serde_json = "1.0.117"
tokio-tungstenite = { version = "0.23.1", features = ["native-tls"] }
futures-util = "0.3.30"
tokio = { version = "1.37.0", features = [
"io-std",
"time",
"macros",
"rt",
"rt-multi-thread",
"sync",
] }
lambdaworks-crypto = { git = "https://github.com/lambdaclass/lambdaworks.git", rev = "efd46f0b0aea3aa95d94bba7de86cb96611b40d3", features = ["serde"] }
serde = { version = "1.0.201", features = ["derive"] }
sha3 = { version = "0.10.8" }
url = "2.5.0"
hex = "0.4.3"
ciborium = "=0.2.2"
serde_repr = "0.1.19"
dialoguer = "0.11.0"
reqwest = { version = "0.12", features = ["json"] }