[package] name = "zstd-cli-rs" version = "0.1.0" edition = "2021" [lib] crate-type = ["staticlib"] [features] default = ["cli", "compression", "decompression"] # The command-line parser and dispatch layer, which requires the C fileio # backend at link time. Program archives enable it; C test binaries link a # helpers-only archive (timefn) built without it. cli = [] compression = [] decompression = [] [dependencies] libc = "0.2"