namerena-rs/miner/Cargo.toml

31 lines
777 B
TOML
Raw Normal View History

2024-04-05 01:48:21 +08:00
[package]
name = "tswn"
description = "tool shenjack work shop namerena"
2024-06-24 08:59:32 +08:00
version = "0.3.1"
2024-04-05 01:48:21 +08:00
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-06-23 22:11:20 +08:00
clap = { version = "4.5", features = ["derive"] }
2024-04-05 01:48:21 +08:00
base16384 = "0.1.0"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["time"] }
chrono = "0.4"
2024-04-05 01:48:21 +08:00
colored = "2.1.0"
2024-06-23 21:19:51 +08:00
crossbeam = { version = "0.8.4", features = ["crossbeam-channel"] }
2024-04-05 01:48:21 +08:00
# windows 下额外指定一个 windows 依赖 (微软赛高!)
# 用于在 bench 状态下指定核心(就是闲得)
[target.'cfg(windows)'.dependencies]
2024-04-26 00:32:32 +08:00
windows-sys = { version = "*", features = [
"Win32_Foundation",
"Win32_System_Threading",
] }
2024-04-05 01:48:21 +08:00
[features]
default = ["simd"]
simd = []