[package] name = "riprop" description = "Window manager agnostic window swallower for x11" keywords = [ "utility", "window-manager", "swallow", "xcb" ] categories = [ "command-line-utilities" ] repository = "https://github.com/m0lese/riprop" license = "GPL-3.0" readme = "README.md" version = "3.0.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 = "riprop" path = "src/main.rs" [dependencies] xcb = ">=0.10" anyhow = ">=1.0.0" [package.metadata.deb] license-file = [ "LICENSE" ] depends = "$auto" extended-description = "Window manager agnostic window swallower for x11" assets = [ "target/release/riprop", "~/.local/bin", "755" ]