timars/Cargo.toml
2025-04-23 10:54:18 +02:00

25 lines
506 B
TOML

[package]
name = "timars"
version = "0.1.0"
edition = "2024"
publish = false
authors = ["Christoph J. Scherr <software@cscherr.de>"]
license = "MIT"
readme = "README.md"
homepage = "https://git.cscherr.de/PlexSheep/rs-base"
repository = "https://git.cscherr.de/PlexSheep/rs-base"
[dependencies]
getopts = "0.2.21"
obfstr = "0.4.4"
rayon = { version = "1.10.0", optional = true }
thiserror = "2.0.12"
[[bin]]
name = "bf"
path = "src/bf.rs"
required-features = ["rayon"]
[features]
rayon = ["dep:rayon"]