-
Notifications
You must be signed in to change notification settings - Fork 39
/
Cargo.toml
57 lines (51 loc) · 1.25 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
[package]
name = "collider"
version = "0.2.9"
build = "build.rs"
authors = ["BoxMrChen <boxmrchen@fastmail.com>"]
readme = "README.md"
repository = "https://github.com/nishuzumi/collider"
edition = "2021"
license = "AGPL-3"
[workspace]
members = ['atomicals-electrumx']
[profile.ci-dev]
incremental = false
inherits = "dev"
[profile.ci-release]
inherits = "release"
lto = true
[build-dependencies]
# crates.io
vergen = { version = "8.3", features = ["build", "cargo", "git", "gitcl"] }
[dependencies]
# crates.io
atomicals-electrumx = { version = "0.2.1", path = 'atomicals-electrumx' }
bitcoin = "0.31.1"
eyre = "0.6.12"
tokio = { version = "1.35", features = ["macros", "rt-multi-thread"] }
tracing = { version = "0.1" }
tracing-subscriber = { version = "0.3" }
lazy_static = "1.4.0"
options = "0.5.3"
structopt = "0.3.26"
anyhow = "1.0.80"
serde = { version = "1.0.197", features = ["derive"] }
rand = "0.8.5"
ciborium = "0.2.2"
ring = "0.17.8"
rayon = "1.9.0"
dotenvy = "0.15.7"
hex = "0.4.3"
log = "0.4.21"
indicatif = { version = "0.17.8", features = ["improved_unicode"] }
ocl = { version = "0.19.6" }
colored = "2.1.0"
prettytable-rs = "0.10.0"
reqwest = "0.12.3"
toml = "0.8.12"
semver = "1.0.22"
[features]
default = ["boardcast"]
boardcast = []
op_sha256 = []