23 lines
486 B
TOML
23 lines
486 B
TOML
[package]
|
|
name = "graveler-softlockpicking-years-wasted-calculator"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
codegen-units = 1
|
|
panic = "abort"
|
|
|
|
[profile.release.package."*"]
|
|
opt-level = 3
|
|
codegen-units = 1
|
|
#panic = "abort"
|
|
|
|
[dependencies]
|
|
rand = { version = "0.8.5", optional = true }
|
|
num_cpus = { version = "1.16.0", optional = true }
|
|
|
|
[features]
|
|
default = ["rust_random", "auto_thread_count"]
|
|
rust_random = ["dep:rand"]
|
|
auto_thread_count = ["dep:num_cpus"]
|