-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
48 lines (45 loc) · 1010 Bytes
/
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
[workspace]
members = [
"src/ck-doge-canister",
"src/ck-doge-minter",
"src/dogecoin",
"examples/check-blocks",
"examples/send-tx",
]
resolver = "2"
[profile.release]
debug = false
lto = true
strip = true
opt-level = 's'
[workspace.package]
version = "0.5.3"
edition = "2021"
repository = "https://github.com/ldclabs/ck-doge"
keywords = ["defi", "dogecoin", "icp", "dapp", "web3"]
categories = ["encoding", "wasm", "data-structures"]
license = "MIT OR Apache-2.0"
[workspace.dependencies]
bytes = "1.6"
serde = "1"
serde_json = "1"
serde_bytes = "0.11"
ciborium = "0.2"
base64 = "0.21"
sha3 = "0.10"
bitcoin = { version = "0.32", default-features = false, features = [
"std",
"secp-lowmemory",
] }
hex = { package = "hex-conservative", version = "0.2", default-features = false, features = [
"alloc",
] }
async-trait = "0.1"
candid = "0.10"
ic-cdk = "0.15"
ic-cdk-timers = "0.9"
ic-stable-structures = "0.6"
icrc-ledger-types = "0.1"
num-traits = "0.2"
once_cell = "1.19"
lazy_static = "1.4"