diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-07-24 01:45:23 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-07-29 00:22:39 -0400 |
commit | 1f093c12f84d269cb68370262d68ff6d515aef2e (patch) | |
tree | 922b0e9008b0ded8aa4528349f74ee41f82b0028 /src/main.rs | |
parent | c06f2789f879c2274b7a082403d12326a3fdf796 (diff) |
Add sha1 and tempfile crates.
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index 38ba654b9..a12f95018 100644 --- a/src/main.rs +++ b/src/main.rs @@ -3,6 +3,8 @@ extern crate libc; extern crate log; extern crate flatbuffers; extern crate msg_rs as msg_generated; +extern crate sha1; +extern crate tempfile; extern crate url; use libc::c_int; |