namerena-rs/Cargo.toml

30 lines
594 B
TOML
Raw Normal View History

2024-02-28 19:04:57 +08:00
[package]
2024-03-03 14:51:01 +08:00
name = "tswn"
description = "tool shenjack work shop namerena"
2024-02-28 19:04:57 +08:00
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-02-29 01:05:41 +08:00
clap = { version = "4.5.1", features = ["derive"] }
2024-02-28 23:33:59 +08:00
base16384 = "0.1.0"
2024-02-28 19:04:57 +08:00
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["time"] }
chrono = "0.4.34"
colored = "2.1.0"
2024-03-03 17:12:29 +08:00
lazy_static = "1.4.0"
2024-02-29 00:25:19 +08:00
2024-03-02 00:08:56 +08:00
[features]
default = ["simd"]
simd = []
2024-02-29 00:25:19 +08:00
[profile.release]
2024-02-29 00:36:28 +08:00
opt-level = 3
2024-02-29 00:25:19 +08:00
codegen-units = 1
2024-02-29 00:36:28 +08:00
panic = "abort"
debug = false
lto = true
overflow-checks = false