[package] name = "shelfie" version = "1.0.1" edition = "2021" description = "shelfie turns shell scripts into ELFs" license = "MIT OR Apache-2.0" repository = "https://gitlab.com/BrightOpen/shelfie" [features] default = [] logging = ["env_logger", "log"] [dependencies] memmap2 = "0.5" anyhow = "1" log = { version = "0.4", optional = true } env_logger = { version = "0.10", optional = true } [profile.release] strip = true # Automatically strip symbols from the binary. #opt-level = "z" # Optimize for size. lto = true #codegen-units = 1 #panic = "abort"