Use the libstd instead of the errno crate in wasmtime-runtime. (#408)

Rust's standard library now has a way to read the OS errno value, so use
that instead of depending on the errno crate in wasmtime-runtime.
This commit is contained in:
Dan Gohman
2019-10-17 17:14:57 -07:00
committed by GitHub
parent 50beb21b63
commit 877152ee5c
3 changed files with 7 additions and 9 deletions

View File

@@ -18,7 +18,6 @@ wasmtime-environ = { path = "../wasmtime-environ", default-features = false }
region = "2.0.0"
lazy_static = "1.2.0"
libc = { version = "0.2.60", default-features = false }
errno = "0.2.4"
memoffset = "0.5.1"
failure = { version = "0.1.3", default-features = false }
failure_derive = { version = "0.1.3", default-features = false }