Update snap requirement from 0.2 to 1.0 (#172)

* Update snap requirement from 0.2 to 1.0

Updates the requirements on [snap](https://github.com/BurntSushi/rust-snappy) to permit the latest version.
- [Release notes](https://github.com/BurntSushi/rust-snappy/releases)
- [Commits](https://github.com/BurntSushi/rust-snappy/compare/0.2.0...1.0.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Fix imports of snappy lib

Co-authored-by: Mahmut Bulut <vertexclique@gmail.com>
This commit is contained in:
dependabot-preview[bot] 2020-02-25 00:00:34 +01:00 committed by GitHub
parent 514e4a0bda
commit 9a5f10fc16
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -57,4 +57,4 @@ uuid = { version = "0.8", features = ["v4"] }
[dev-dependencies]
env_logger = "0.7"
proptest = "0.9"
snap = "0.2"
snap = "1.0"

View File

@ -1,5 +1,5 @@
use bastion::prelude::*;
use snap::*;
use snap::raw::*;
use std::io::{Read, Write};
use std::net::{TcpListener, TcpStream};
use std::sync::Arc;