-
Notifications
You must be signed in to change notification settings - Fork 16
/
Cargo.toml
87 lines (81 loc) · 2.33 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
[package]
name = "evm_rpc"
version = "2.2.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 }
ethnum = { workspace = true }
evm_rpc_types = { path = "evm_rpc_types" }
futures = { workspace = true }
getrandom = { 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 }
ic-certified-map = { workspace = true }
maplit = "1.0"
minicbor = { workspace = true }
minicbor-derive = { workspace = true }
num = "0.4"
num-bigint = { workspace = true }
num-traits = "0.2"
num-derive = "0.4"
serde = { workspace = true }
serde_bytes = { workspace = true }
serde_json = { workspace = true }
thousands = "0.2"
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.13"
maplit = "1"
pocket-ic = "5.0.0"
proptest = { workspace = true }
rand = "0.8"
[workspace.dependencies]
candid = { version = "0.10.10" }
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"
ic-canister-log = "0.2.0"
ic-cdk = "0.16.0"
ic-cdk-bindgen = "0.1"
ic-cdk-macros = "0.16.0"
ic-certified-map = "0.4"
ic-metrics-encoder = "1.1"
ic-stable-structures = "0.6.7"
minicbor = { version = "0.25.1", features = ["alloc", "derive"] }
minicbor-derive = "0.15.3"
num-bigint = "0.4.6"
proptest = "1.5.0"
serde = "1.0"
serde_json = "1.0"
serde_bytes = "0.11.15"
strum = { version = "0.26", features = ["derive"] }
thiserror = "1.0.69"
url = "2.5"
[workspace]
members = ["e2e/rust", "evm_rpc_types"]