-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathCargo.toml
93 lines (87 loc) · 2.48 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[package]
name = "evm_rpc"
version = "2.3.0"
description = "Interact with EVM blockchains from the Internet Computer."
authors = ["DFINITY Foundation"]
readme = "README.md"
edition = "2021"
[profile.release]
debug = false
lto = true
strip = true
opt-level = 's'
# Required by `ic-test-utilities-load-wasm`
[profile.canister-release]
inherits = "release"
[dependencies]
candid = { workspace = true }
canhttp = { path = "canhttp" }
ethnum = { workspace = true }
evm_rpc_types = { path = "evm_rpc_types" }
futures = { workspace = true }
getrandom = { workspace = true }
http = { workspace = true }
ic-sha3 = "1.0.0"
ic-ethereum-types = "1.0.0"
ic-metrics-encoder = { workspace = true }
ic-stable-structures = { workspace = true }
ic-canister-log = { workspace = true }
ic-cdk = { workspace = true }
ic-cdk-macros = { workspace = true }
maplit = "1.0"
minicbor = { workspace = true }
serde = { workspace = true }
serde_bytes = { workspace = true }
serde_json = { workspace = true }
thousands = "0.2"
tower = {workspace = true}
tower-http = {workspace = true, features = ["set-header", "util"]}
url = { workspace = true }
hex = "0.4"
ethers-core = "2.0"
zeroize = { version = "1.8", features = ["zeroize_derive"] }
regex = "1.11"
[dev-dependencies]
assert_matches = "1.5"
candid_parser = { workspace = true }
ic-crypto-test-utils-reproducible-rng = { git = "https://github.com/dfinity/ic", rev = "release-2024-09-26_01-31-base" }
ic-test-utilities-load-wasm = { git = "https://github.com/dfinity/ic", rev = "release-2024-09-26_01-31-base" }
itertools = "0.14.0"
maplit = "1"
pocket-ic = "6.0.0"
proptest = { workspace = true }
rand = "0.8"
[workspace.dependencies]
assert_matches = "1.5.0"
candid = { version = "0.10.13" }
candid_parser = {version = "0.1.4"}
ethnum = { version = "1.5.0", features = ["serde"] }
futures = "0.3.31"
getrandom = { version = "0.2", features = ["custom"] }
hex = "0.4.3"
http = "1.2.0"
ic-canister-log = "0.2.0"
ic-cdk = "0.17.1"
ic-cdk-bindgen = "0.1"
ic-cdk-macros = "0.17.1"
ic-certified-map = "0.4"
ic-metrics-encoder = "1.1"
ic-stable-structures = "0.6.7"
maplit = "1.0.2"
minicbor = { version = "0.25.1", features = ["alloc", "derive"] }
num-bigint = "0.4.6"
num-traits = "0.2.19"
pin-project = "1.1.9"
proptest = "1.6.0"
serde = "1.0"
serde_json = "1.0"
serde_bytes = "0.11.15"
strum = { version = "0.26", features = ["derive"] }
tokio = "1.43.0"
tower = "0.5.2"
tower-layer = "0.3.3"
tower-http = "0.6.2"
thiserror = "2.0.11"
url = "2.5"
[workspace]
members = [ "canhttp", "e2e/rust", "evm_rpc_types"]