[package] name = "scatterbrainedsearch" description = "Scatterbrained implementation of minigrep" keywords = [ "utility", "pattern-matching", "grep", "search" ] categories = [ "command-line-utilities" ] repository = "https://github.com/m0lese/scatterbrainedsearch" license = "MIT OR Apache-2.0" readme = "README.md" version = "2.5.0" 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 [[bin]] bench = false name = "sbs" path = "src/main.rs" [lib] name = "scatterbrainedsearch" path = "src/lib.rs" [package.metadata.deb] license-file = [ "LICENSE" ] depends = "$auto" extended-description = "Scatterbrained implementation of minigrep" assets = [ "target/release/sbs", "~/.local/bin", "755" ]