37 lines
686 B
TOML
37 lines
686 B
TOML
[package]
|
|
|
|
name = "zip"
|
|
version = "0.0.5"
|
|
authors = ["Mathijs van de Nes <git@mathijs.vd-nes.nl>"]
|
|
license = "MIT"
|
|
repository = "https://github.com/mvdnes/zip-rs.git"
|
|
description = """
|
|
Library to support the reading and writing of zip files.
|
|
"""
|
|
|
|
[dependencies.flate2]
|
|
git = "https://github.com/alexcrichton/flate2-rs"
|
|
|
|
[dependencies.bzip2]
|
|
git = "https://github.com/alexcrichton/bzip2-rs"
|
|
|
|
[dependencies.time]
|
|
git = "https://github.com/rust-lang/time.git"
|
|
|
|
[dependencies.log]
|
|
git = "https://github.com/rust-lang/log.git"
|
|
|
|
[[bin]]
|
|
name = "extract"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "extract_lorem"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "write_sample"
|
|
test = false
|
|
doc = false
|