Removed unused imports in bin/zstd

This commit is contained in:
Alexandre Bury 2016-02-22 11:09:55 -08:00
parent f3bc4e164f
commit 5aa908c138
2 changed files with 3 additions and 1 deletions

View file

@ -4,6 +4,8 @@ name = "zstd"
version = "0.1.0"
build = "src/build.rs"
description = "Rust zstd bindings library."
documentation = "https://gyscos.github.io/zstd-rs/zstd/index.html"
repository = "https://github.com/Gyscos/zstd-rs"
license = "MIT"
[[bin]]

View file

@ -2,7 +2,7 @@ extern crate zstd;
use std::env;
use std::fs;
use std::io::{self,Read,Write};
use std::io;
const SUFFIX: &'static str = ".zst";