Remove warning and add Cargo.lock

This commit is contained in:
Alex Lyon
2017-12-18 16:09:51 -08:00
parent 3158f9c7c0
commit c9bac05f07
2 changed files with 14 additions and 1 deletions
Generated
+14
View File
@@ -0,0 +1,14 @@
[[package]]
name = "redox_syscall"
version = "0.1.32"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "zerod"
version = "0.1.0"
dependencies = [
"redox_syscall 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)",
]
[metadata]
"checksum redox_syscall 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)" = "ab105df655884ede59d45b7070c8a65002d921461ee813a024558ca16030eea0"
-1
View File
@@ -4,7 +4,6 @@ use syscall::data::Packet;
use syscall::scheme::Scheme;
use std::fs::File;
use std::io::{Read, Write};
use std::mem::size_of;
use scheme::ZeroScheme;
mod scheme;