-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
68 lines (63 loc) · 1.72 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 = [
"hub",
"customs/bitcoin_runes",
"customs/bitcoin_brc20",
"customs/icp",
"route/icp",
"route/bitfinity",
"proxy/cosmwasm",
"proxy/runes_proxy",
"proxy/generic_proxy",
"oracle/brc20_oracle",
"types",
"mock/bitcoin",
"mock/icp",
"mock/hub",
]
exclude = ["route/solana"]
resolver = "2"
[workspace.package]
edition = "2021"
[profile.release]
# Add debug information to the release build (does NOT reduce the level of optimization!)
# Makes flamegraphs more readable.
# https://doc.rust-lang.org/cargo/reference/manifest.html#the-profile-sections
debug = true
lto = true
opt-level = 'z'
[profile.canister-release]
inherits = "release"
debug = false
[workspace.dependencies]
candid = { version = "0.10" }
candid_parser = { version = "0.1.2" }
ciborium = "0.2.1"
ic-btc-interface = { git = "https://github.com/dfinity/bitcoin-canister", rev = "9b239d1d67253eb14a35be6061e3967d5ec9db9d" }
ic-cdk = "0.12.2"
ic-cdk-macros = "0.8.3"
ic-ledger-types = "0.9.0"
minicbor = { version = "0.19.1", features = ["alloc", "derive"] }
minicbor-derive = "0.13.0"
serde = { version = "1", features = ["derive"] }
serde_bytes = "0.11"
serde_json = { version = "1", features = ["std"] }
simple_asn1 = "0.6.2"
thiserror = "1"
log = "0.4"
hex = "0.4.3"
sha2 = "0.10.6"
serde_with = { version = "3.1.0", features = ["json"] }
derive_more = { version = "0.99.17", default-features = false, features = [
"from",
"into",
"display",
"try_into",
] }
rust_decimal = "1.36"
rust_decimal_macros = "1.36"
# log deps
# ic-log = { git = "https://github.com/bitfinity-network/canister-sdk", package = "ic-log", tag = "v0.12.x" }
ic-stable-structures = "0.6.5"
lazy_static = "1.4.0"
anyhow = "1.0.80"