[package] name = "swaperooni" version = "0.1.0" edition = "2021" exclude = ["img/", "examples/", ".github/", "renovate.json"] authors = ["cdaringe"] description = "Hot-reload child process in response to user provided events. Proxies signals into the child process." repository = "https://github.com/cdaringe/swaperooni" license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] name = "swaperooni" path = "src/lib.rs" [[bin]] name = "swaperooni" path = "src/bin.rs" [dependencies] anyhow = "1.0.78" async-trait = "0.1.75" clap = { version = "4.4.11", features = ["derive", "env"] } signal-hook = "0.3.17" thiserror = "1.0.51" tokio = { version = "1", features = ["full"] } [profile.release] strip = true # Automatically strip symbols from the binary. opt-level = "z" lto = true codegen-units = 1