Browse Source
Trim some unused deps from wasmtime-environ (#1515)
Was poking around but looks like these are no longer needed
pull/1527/head
Alex Crichton
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
1 additions and
16 deletions
-
Cargo.lock
-
crates/environ/Cargo.toml
|
@ -1395,7 +1395,7 @@ dependencies = [ |
|
|
"rand_isaac", |
|
|
"rand_isaac", |
|
|
"rand_jitter", |
|
|
"rand_jitter", |
|
|
"rand_os", |
|
|
"rand_os", |
|
|
"rand_pcg 0.1.2", |
|
|
"rand_pcg", |
|
|
"rand_xorshift", |
|
|
"rand_xorshift", |
|
|
"winapi", |
|
|
"winapi", |
|
|
] |
|
|
] |
|
@ -1411,7 +1411,6 @@ dependencies = [ |
|
|
"rand_chacha 0.2.2", |
|
|
"rand_chacha 0.2.2", |
|
|
"rand_core 0.5.1", |
|
|
"rand_core 0.5.1", |
|
|
"rand_hc 0.2.0", |
|
|
"rand_hc 0.2.0", |
|
|
"rand_pcg 0.2.1", |
|
|
|
|
|
] |
|
|
] |
|
|
|
|
|
|
|
|
[[package]] |
|
|
[[package]] |
|
@ -1520,15 +1519,6 @@ dependencies = [ |
|
|
"rand_core 0.4.2", |
|
|
"rand_core 0.4.2", |
|
|
] |
|
|
] |
|
|
|
|
|
|
|
|
[[package]] |
|
|
|
|
|
name = "rand_pcg" |
|
|
|
|
|
version = "0.2.1" |
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
|
|
checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" |
|
|
|
|
|
dependencies = [ |
|
|
|
|
|
"rand_core 0.5.1", |
|
|
|
|
|
] |
|
|
|
|
|
|
|
|
|
|
|
[[package]] |
|
|
[[package]] |
|
|
name = "rand_xorshift" |
|
|
name = "rand_xorshift" |
|
|
version = "0.1.1" |
|
|
version = "0.1.1" |
|
@ -2212,11 +2202,9 @@ dependencies = [ |
|
|
"log", |
|
|
"log", |
|
|
"more-asserts", |
|
|
"more-asserts", |
|
|
"pretty_env_logger", |
|
|
"pretty_env_logger", |
|
|
"rand 0.7.3", |
|
|
|
|
|
"rayon", |
|
|
"rayon", |
|
|
"serde", |
|
|
"serde", |
|
|
"sha2", |
|
|
"sha2", |
|
|
"target-lexicon", |
|
|
|
|
|
"tempfile", |
|
|
"tempfile", |
|
|
"thiserror", |
|
|
"thiserror", |
|
|
"toml", |
|
|
"toml", |
|
|
|
@ -41,10 +41,7 @@ errno = "0.2.4" |
|
|
|
|
|
|
|
|
[dev-dependencies] |
|
|
[dev-dependencies] |
|
|
tempfile = "3" |
|
|
tempfile = "3" |
|
|
target-lexicon = { version = "0.10.0", default-features = false } |
|
|
|
|
|
pretty_env_logger = "0.4.0" |
|
|
pretty_env_logger = "0.4.0" |
|
|
rand = { version = "0.7.0", default-features = false, features = ["small_rng"] } |
|
|
|
|
|
cranelift-codegen = { path = "../../cranelift/codegen", version = "0.62.0", features = ["enable-serde", "all-arch"] } |
|
|
|
|
|
filetime = "0.2.7" |
|
|
filetime = "0.2.7" |
|
|
lazy_static = "1.3.0" |
|
|
lazy_static = "1.3.0" |
|
|
|
|
|
|
|
|