[package] name = "hb" version = "0.1.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] anyhow = "1.0.81" clap = { version = "4.4.3", features = ["derive"] } glob = "0.3.1" rayon = "1.7.0" # lints from https://github.com/0atman/noboilerplate/blob/main/scripts/37-functional-rust.md # these are deliberately extremely restrictive to avoid most of the easily-refactored # footguns as much as possible. unlike the github lints, this does not forbid unsafe # code [lints.clippy] enum_glob_use = "deny" pedantic = "deny" nursery = "deny" unwrap_used = "deny" [profile.release] opt-level = 'z' # size optimisation lto = true # link time optimisation codegen-units = 1 # fewer -> more optimisation panic = 'abort' # abort on panic strip = 'symbols' # strip symbols