-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (39 loc) · 1.22 KB
/
Cargo.toml
File metadata and controls
44 lines (39 loc) · 1.22 KB
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
[package]
name = "rich-swap"
version = "0.1.0"
edition = "2021"
[workspace]
members = [".", "crates/*"]
exclude = ["donate-cli"]
[lib]
crate-type = ["cdylib"]
[dependencies]
candid = "0.10"
ic-cdk = "0.17"
ic-cdk-macros = "0.17"
syn = "1.0"
anyhow = "1"
thiserror = "1"
generic-array = "0.14"
serde = { version = "1.0", features = ["derive"] }
cfg-if = "1.0"
hex = "0.4"
lazy_static = "1.5"
ic-stable-structures = "0.6"
ciborium = "0.2"
ree-types-v4 = { git = "https://github.com/octopus-network/ree-types.git", rev = "f21669c412c4dbc8ccf9f066f4c11ac1df453462", package = "ree-types" }
ree-types = { git = "https://github.com/octopus-network/ree-types.git", rev = "3d0fb503384082bdeaf368305c4229801ee9ebd3" }
rune-indexer = { path = "./crates/rune-indexer" }
ic-log = { path = "./crates/ic-log" }
chain-key = { path = "./crates/chain-key" }
bitcoin-canister = { path = "./crates/bitcoin-canister" }
ic-canisters-http-types = { git = "https://github.com/dfinity/ic", tag = "release-2024-03-06_23-01+p2p" }
ic-canister-log = { git = "https://github.com/dfinity/ic", tag = "release-2024-01-18_23-01" }
serde_json = "1.0"
serde_bytes = "0.11.17"
ordinals = "0.0.14"
rust_decimal = "1.37.1"
bip322 = "0.0.9"
[features]
testnet = []
default = []