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
parent
commit
c268704743
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 14
      Cargo.lock
  2. 3
      crates/environ/Cargo.toml

14
Cargo.lock

@ -1395,7 +1395,7 @@ dependencies = [
"rand_isaac",
"rand_jitter",
"rand_os",
"rand_pcg 0.1.2",
"rand_pcg",
"rand_xorshift",
"winapi",
]
@ -1411,7 +1411,6 @@ dependencies = [
"rand_chacha 0.2.2",
"rand_core 0.5.1",
"rand_hc 0.2.0",
"rand_pcg 0.2.1",
]
[[package]]
@ -1520,15 +1519,6 @@ dependencies = [
"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]]
name = "rand_xorshift"
version = "0.1.1"
@ -2212,11 +2202,9 @@ dependencies = [
"log",
"more-asserts",
"pretty_env_logger",
"rand 0.7.3",
"rayon",
"serde",
"sha2",
"target-lexicon",
"tempfile",
"thiserror",
"toml",

3
crates/environ/Cargo.toml

@ -41,10 +41,7 @@ errno = "0.2.4"
[dev-dependencies]
tempfile = "3"
target-lexicon = { version = "0.10.0", default-features = false }
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"
lazy_static = "1.3.0"

Loading…
Cancel
Save