an efficient binary archive format
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

update Cargo.toml

zach 719a0a6a 7e9d2089

+9 -2
+9 -2
Cargo.toml
··· 2 2 name = "bindle-file" 3 3 version = "0.1.0" 4 4 edition = "2024" 5 + authors = ["Zach Shipko <zachshipko@gmail.com>"] 6 + license = "ISC" 7 + keywords = ["archive", "file format"] 8 + readme = "README.md" 9 + description = "an efficient binary archive format" 10 + documentation = "https://docs.rs/bindle-file" 11 + repository = "https://tangled.org/zachshipko.com/bindle-file" 12 + default-run = "bindle" 5 13 6 14 [lib] 7 15 crate-type = ["cdylib", "staticlib", "rlib"] ··· 9 17 [[bin]] 10 18 name = "bindle" 11 19 required-features = ["cli"] 12 - 13 20 14 21 [dependencies] 15 22 crc32fast = "1.5.0" 16 23 memmap2 = "0.9.9" 17 24 zerocopy = { version = "0.8", features = ["std", "derive"] } 18 25 zstd = "0.13" 19 - clap = { version = "4.5", features = ["derive"], optional = true } 20 26 fs2 = "0.4" 27 + clap = { version = "4.5", features = ["derive"], optional = true } 21 28 22 29 [features] 23 30 default = ["cli"]