-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
80 lines (77 loc) · 2.74 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
[workspace]
members = [
"src/icrc-client",
"src/did",
"src/eth-signer",
"src/eth-signer/tests/test_canister",
"src/ethereum-json-rpc-client",
"src/evm-block-extractor",
"src/evm-canister-client",
"src/evm-log-extractor",
"src/register-evm-agent",
"src/signature-verification-canister-client",
]
resolver = "2"
[workspace.package]
authors = ["Bitfinity Network"]
categories = ["cryptography::cryptocurrencies"]
description = "EVM canister SDK"
edition = "2021"
homepage = "https://github.com/bitfinity-network/bitfinity-evm-sdk"
include = ["src/**/*", "LICENSE", "README.md"]
license = "MIT"
repository = "https://github.com/bitfinity-network/bitfinity-evm-sdk"
version = "0.35.0"
[workspace.dependencies]
alloy-primitives-07 = { package = "alloy-primitives", version = "0.7", default-features = false }
alloy-primitives-08 = { package = "alloy-primitives", version = "0.8", default-features = false }
anyhow = "1.0"
async-trait = "0.1"
bincode = "1.3"
bytes = "1.7"
candid = "0.10"
clap = { version = "4", features = ["derive", "env"] }
chrono = { version = "0.4", default-features = false }
derive_more = { version = "1", features = ["display", "from", "into"] }
env_logger = { version = "0.11.4", default-features = false }
ethereum-types = "0.14"
ethers-core = "2.0"
futures = { version = "0.3", default-features = false }
hex = "0.4"
ic-canister = { git = "https://github.com/bitfinity-network/canister-sdk", package = "ic-canister", tag = "v0.22.x" }
ic-canister-client = { git = "https://github.com/bitfinity-network/canister-sdk", package = "ic-canister-client", tag = "v0.22.x" }
ic-exports = { git = "https://github.com/bitfinity-network/canister-sdk", package = "ic-exports", tag = "v0.22.x" }
ic-log = { git = "https://github.com/bitfinity-network/canister-sdk", package = "ic-log", tag = "v0.22.x" }
ic-stable-structures = { git = "https://github.com/bitfinity-network/canister-sdk", package = "ic-stable-structures", tag = "v0.22.x" }
itertools = "0.13"
jsonrpc-core = "18.0"
jsonrpsee = { version = "0.24", features = ["server", "macros"] }
lightspeed_scheduler = "0.59"
log = "0.4"
num = "0.4"
port_check = "0.2"
rand = { version = "0.8", features = ["std_rng", "small_rng"] }
reqwest = { version = "0.12", default-features = false }
rlp = "0.5"
serial_test = "3"
serde = "1.0"
serde_bytes = "0.11"
serde_json = "1.0"
serde_with = "3.3"
sha2 = "0.10"
sha3 = "0.10"
sqlx = { version = "0.8.1", default-features = false, features = [
"macros",
"migrate",
"json",
"runtime-tokio",
] }
tempfile = "3"
testcontainers = { package = "testcontainers-modules", version = "0.11", features = [
"postgres",
] }
thiserror = "1.0"
tokio = { version = "1.39", features = ["macros", "rt", "signal"] }
url = "2.5"
[profile.dev]
debug = false