-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
32 lines (29 loc) · 1015 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
31
32
[package]
name = "safe-sdk"
version = "0.1.0"
edition = "2021"
authors = ["James Prestwich <[email protected]>"]
description = "API Client for Gnosis Safe Transaction Service"
repository = "https://github.com/nomad-xyz/safe-sdk"
license = "Apache-2.0 OR MIT"
keywords = ["Ethereum", "Gnosis", "Safe"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-stream = "0.3.3"
async-trait = "0.1.58"
ethers = "1.0.0"
hex = "0.4.3"
once_cell = "1.16.0"
reqwest = "0.11.12"
serde = { version = "1.0.147", features = ["derive"] }
serde_json = "1.0.87"
thiserror = "1.0.37"
tokio = { version = "1.0.1", features = ["macros"] }
tokio-stream = "0.1.11"
tracing = "0.1.37"
tracing-futures = "0.2.5"
url = { version = "2.3.1", features = ["serde"] }
chrono = { version = "0.4.24", features = ["serde"] }
[dev-dependencies]
tokio = { version = "1.0.1", features = ["rt-multi-thread", "macros"] }
tracing-test = { version = "0.2.3", features = ["no-env-filter"] }