[package] name = "nomore" description = "Personal Standard Rust Lib Publics for reuse and to avoid redefinition" keywords = [ "standard" ] categories = [ "accessibility" ] repository = "https://github.com/m0lese/nomore" license = "GPL-2.0" readme = "README.md" version = "0.2.1" authors = [ "molese " ] autotests = false edition = "2021" include = [ "src/*.rs", "Cargo.toml", "Cargo.lock", "LICENSE", "README.md" ] [profile.release] opt-level = 3 # apply all optimizations debug = false # debug information debug-assertions = false # runtime validation (debug/development builds) overflow-checks = false # panic will occur on overflow lto = "fat" # perform optimizations across all crates within the dependency graph panic = "abort" # Unwind the stack upon panic incremental = false # improves re-compile times codegen-units = 16 # crate to be processed in parallel (16 for non-incremental builds) rpath = false # disable rpath flag [dependencies] fastrand = "1.7.0" [lib] name = "nomore" path = "src/lib.rs"