forked from hack-ink/atomicalsir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (31 loc) · 1.06 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
[package]
authors = ["Xavier Lau <xavier@inv.cafe>"]
build = "build.rs"
description = "Atomicals mining manager."
edition = "2021"
homepage = "https://hack.ink/atomicalsir"
license = "GPL-3.0"
name = "atomicalsir"
readme = "README.md"
repository = "https://github.com/hack-ink/atomicalsir"
version = "0.1.9"
[profile.ci-dev]
incremental = false
inherits = "dev"
[profile.ci-release]
inherits = "release"
lto = true
[build-dependencies]
# crates.io
vergen = { version = "8.2", features = ["build", "cargo", "git", "gitcl"] }
[dependencies]
# crates.io
anyhow = { version = "1.0" }
clap = { version = "4.4", features = ["color", "derive"] }
color-eyre = { version = "0.6" }
reqwest = { version = "0.11", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }
tokio = { version = "1.35", features = ["macros", "rt-multi-thread"] }
tracing = { version = "0.1" }
tracing-subscriber = { version = "0.3" }