Implement copy where needed
This commit is contained in:
parent
df047b0b66
commit
22580a768d
2 changed files with 9 additions and 5 deletions
12
Cargo.toml
12
Cargo.toml
|
@ -9,10 +9,14 @@ description = """
|
||||||
Library to support the reading and writing of zip files.
|
Library to support the reading and writing of zip files.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
[dependencies]
|
[dependencies.flate2]
|
||||||
flate2 = "*"
|
git = "https://github.com/alexcrichton/flate2-rs"
|
||||||
bzip2 = "*"
|
|
||||||
time = "*"
|
[dependencies.bzip2]
|
||||||
|
git = "https://github.com/alexcrichton/bzip2-rs"
|
||||||
|
|
||||||
|
[dependencies.time]
|
||||||
|
git = "https://github.com/rust-lang/time.git"
|
||||||
|
|
||||||
[[bin]]
|
[[bin]]
|
||||||
name = "extract"
|
name = "extract"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
//! Possible ZIP compression methods.
|
//! Possible ZIP compression methods.
|
||||||
|
|
||||||
/// Compression methods for the contents of a ZIP file.
|
/// Compression methods for the contents of a ZIP file.
|
||||||
#[deriving(FromPrimitive, Clone)]
|
#[deriving(FromPrimitive, Clone, Copy)]
|
||||||
pub enum CompressionMethod
|
pub enum CompressionMethod
|
||||||
{
|
{
|
||||||
/// The file is stored (no compression)
|
/// The file is stored (no compression)
|
||||||
|
|
Loading…
Add table
Reference in a new issue