generated from veeso-dev/rust-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
68 lines (62 loc) · 1.58 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
[workspace]
members = [
"src/abi",
"src/deferred_data",
"src/deferred_minter",
"src/did",
"src/repr",
"integration-tests",
]
resolver = "2"
[workspace.package]
authors = ["Christian Visintin <[email protected]>"]
edition = "2021"
license = "SEE LICENSE IN LICENSE"
readme = "README.md"
repository = "https://github.com/EKOKEtoken/ekoke"
version = "0.2.0"
[workspace.dependencies]
anyhow = "1"
candid = "0.10"
ethers-contract = { version = "2", default-features = false, features = [
"abigen",
] }
ethers-core = "2"
ethers-middleware = "2"
ethers-providers = "2"
ethers-signers = "2"
getrandom = { version = "0.2", features = ["custom"] }
hex = "0.4"
ic-agent = "0.39"
ic-cdk = "0.17"
ic-cdk-macros = "0.17"
ic-cdk-timers = "0.11"
ic-log = { git = "https://github.com/bitfinity-network/canister-sdk", package = "ic-log", tag = "v0.23.x" }
ic-test-utils = { git = "https://github.com/bitfinity-network/canister-sdk", package = "ic-test-utils", tag = "v0.23.x" }
ic-stable-structures = "0.6"
ic-utils = "0.39"
k256 = { version = "0.13", default-features = false, features = ["ecdsa-core"] }
log = "0.4"
num-bigint = "0.4"
num-traits = "0.2"
reqwest = "0.12"
route-recognizer = "0.3"
secp256k1 = "0.30"
serde = { version = "1", features = ["derive"] }
serde_bytes = "0.11"
serde_json = "1"
sha2 = "0.10"
sha3 = "0.10"
testcontainers = "0.23"
thiserror = "2"
time = { version = "0.3.36", features = ["macros", "parsing"] }
url = "2"
[profile.dev]
debug = false
[profile.dev.package."*"]
opt-level = 2
[profile.dev.build-override]
opt-level = 2
[profile.release]
lto = true
opt-level = 'z'