generated from veeso-dev/rust-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
66 lines (60 loc) · 1.37 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
[workspace]
members = [
"integration-tests",
"src/did",
"src/deferred",
"src/ekoke_erc20_swap",
"src/ekoke_liquidity_pool",
"src/ekoke_reward_pool",
"src/icrc",
"src/marketplace",
"src/xrc",
]
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.1.0"
[workspace.dependencies]
anyhow = "1"
async-trait = "0.1"
candid = "0.10"
ethers-contract = { version = "2", default-features = false, features = [
"abigen",
] }
ethers-core = "2"
ethers-signers = "2"
ethnum = "1"
dip721-rs = "0.2"
getrandom = { version = "0.2", features = ["custom"] }
hex = "0.4"
ic-cdk = "0.17"
ic-cdk-macros = "0.17"
ic-cdk-timers = "0.11"
ic-stable-structures = "0.6"
ic-xrc-types = "1.2"
icrc-ledger-types = "0.1"
itertools = "0.13"
k256 = { version = "0.13", default-features = false, features = ["ecdsa-core"] }
num-bigint = "0.4"
num-traits = "0.2"
secp256k1 = "0.30"
serde = { version = "1", features = ["derive"] }
serde_bytes = "0.11"
serde_json = "1"
sha2 = "0.10"
sha3 = "0.10"
thiserror = "2"
time = { version = "0.3.36", features = ["macros", "parsing"] }
[profile.dev]
debug = false
[profile.dev.package."*"]
opt-level = 2
[profile.dev.build-override]
opt-level = 2
[profile.release]
lto = true
opt-level = 'z'