Added Travis support, README and LICENSE
This commit is contained in:
parent
ac9301f7d9
commit
4d07f695de
4 changed files with 73 additions and 0 deletions
18
.travis.yml
Normal file
18
.travis.yml
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
language: rust
|
||||||
|
|
||||||
|
notifications:
|
||||||
|
email:
|
||||||
|
on_success: never
|
||||||
|
on_failure: always
|
||||||
|
|
||||||
|
env:
|
||||||
|
global:
|
||||||
|
- secure: F1XhJmZGLE0WuVr7KsN0+Yn5sCiBjc8L9Lwugg5wV3/XwJqskq4EZXSFUDBbhIsMeArMftnrfxejEncySMs/CtjAaHnHxbGvCkWZAihyNQUjbbaYXTpPBfjqye5dhkWIEeTZXfIZacCoFxPGwGA+SWf9PfvgztQyazXEtmxtSqw=
|
||||||
|
|
||||||
|
script:
|
||||||
|
- cargo build
|
||||||
|
- cargo test
|
||||||
|
- cargo doc
|
||||||
|
|
||||||
|
after_script:
|
||||||
|
- cd target && curl http://www.rust-ci.org/artifacts/put?t=$RUSTCI_TOKEN | sh
|
15
Cargo.toml
15
Cargo.toml
|
@ -6,3 +6,18 @@ authors = ["Mathijs van de Nes <git@mathijs.vd-nes.nl>"]
|
||||||
|
|
||||||
[dependencies.flate2]
|
[dependencies.flate2]
|
||||||
git = "https://github.com/alexcrichton/flate2-rs.git"
|
git = "https://github.com/alexcrichton/flate2-rs.git"
|
||||||
|
|
||||||
|
[[bin]]
|
||||||
|
name = "extract"
|
||||||
|
test = false
|
||||||
|
doc = false
|
||||||
|
|
||||||
|
[[bin]]
|
||||||
|
name = "cksummer"
|
||||||
|
test = false
|
||||||
|
doc = false
|
||||||
|
|
||||||
|
[[bin]]
|
||||||
|
name = "write_sample"
|
||||||
|
test = false
|
||||||
|
doc = false
|
||||||
|
|
21
LICENSE
Normal file
21
LICENSE
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
The MIT License (MIT)
|
||||||
|
|
||||||
|
Copyright (c) 2014 Mathijs van de Nes
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
19
README.md
Normal file
19
README.md
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
zip-rs
|
||||||
|
======
|
||||||
|
|
||||||
|
[](https://travis-ci.org/mvdnes/zip-rs)
|
||||||
|
|
||||||
|
[Documentation](http://www.rust-ci.org/mvdnes/zip-rs/doc/zip/)
|
||||||
|
|
||||||
|
A zip library for rust wich supports reading and writing of simple ZIP files.
|
||||||
|
|
||||||
|
Supported compression formats:
|
||||||
|
|
||||||
|
* stored (i.e. none)
|
||||||
|
* deflate
|
||||||
|
|
||||||
|
Currentlt unsupported zip extensions:
|
||||||
|
|
||||||
|
* ZIP64
|
||||||
|
* Encryption
|
||||||
|
* Multi-disk
|
Loading…
Add table
Reference in a new issue