-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
46 lines (42 loc) · 1.24 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
[package]
name = "ord-canister"
version = "0.1.0"
authors = ["[email protected]"]
repository = "https://github.com/octopus-network/ord-canister"
license = "MIT"
edition = "2021"
[workspace]
members = [".", "btc-rpc-proxy", "crates/*", "interface"]
[lib]
crate-type = ["cdylib"]
[dependencies]
candid = "0.10"
ic-cdk = "0.12"
ic-cdk-macros = "0.8"
ic-cdk-timers = "0.6"
ic-stable-memory = "0.4.1"
ic-stable-memory-derive = "0.4.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["preserve_order"] }
syn = "1.0"
anyhow = "1"
thiserror = "1"
generic-array = "0.14"
cfg-if = "1.0"
hex = "0.4.3"
core2 = "0.3"
bitcoin = { version = "0.30.1", default-features = false, features = ["no-std"] }
bitcoincore-rpc-json = { version = "0.19.0", default-features = false }
bip39 = "2.0.0"
hex-literal = "0.4.1"
lazy_static = "1.4"
ordinals = { path = "./crates/ordinals" }
sha2 = "0.10.8"
rune-indexer-interface = { path = "./interface" }
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_derive = "1.0"
time = "0.3"
[features]
cmp-header = []
default = ["cmp-header"]