-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (42 loc) · 1.16 KB
/
Cargo.toml
File metadata and controls
46 lines (42 loc) · 1.16 KB
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
[package]
name = "ethereum-json-rpc-client"
authors.workspace = true
homepage.workspace = true
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
[features]
ic-canister-client = ["dep:ic-canister-client"]
pocket-ic-tests-client = [
"ic-canister-client",
"ic-canister-client/pocket-ic-client",
]
reqwest = ["dep:reqwest"]
http-outcall = ["dep:url"]
[dependencies]
alloy = { workspace = true }
candid = { workspace = true }
did = { workspace = true }
ic-canister-client = { workspace = true, optional = true }
ic-exports = { workspace = true }
itertools = { workspace = true }
log = { workspace = true }
reqwest = { workspace = true, optional = true, features = [
"gzip",
"json",
"rustls-tls",
"trust-dns",
] }
serde = { workspace = true }
serde_bytes = { workspace = true }
serde_json = { workspace = true }
thiserror = { workspace = true }
url = { workspace = true, optional = true }
[dev-dependencies]
alloy = { workspace = true, features = ["dyn-abi", "json-abi"] }
env_logger = { workspace = true }
rand = { workspace = true }
serial_test = { workspace = true }
tokio = { workspace = true }