diff --git a/Cargo.lock b/Cargo.lock index 5e4f6c1552..7b8c50b2f2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -441,7 +441,6 @@ dependencies = [ "log", "memmap", "num_cpus", - "region", "target-lexicon", "thiserror", ] @@ -467,9 +466,7 @@ dependencies = [ "cranelift-reader", "hashbrown 0.7.2", "log", - "pretty_env_logger", "thiserror", - "walkdir", ] [[package]] @@ -579,7 +576,6 @@ dependencies = [ "indicatif", "log", "pretty_env_logger", - "serde", "target-lexicon", "term", "thiserror", diff --git a/cranelift/Cargo.toml b/cranelift/Cargo.toml index e55d240773..5057408344 100644 --- a/cranelift/Cargo.toml +++ b/cranelift/Cargo.toml @@ -33,7 +33,6 @@ cranelift = { path = "umbrella", version = "0.65.0" } filecheck = "0.5.0" clap = "2.32.0" log = "0.4.8" -serde = "1.0.8" term = "0.6.1" capstone = { version = "0.6.0", optional = true } wat = { version = "1.0.18", optional = true } diff --git a/cranelift/filetests/Cargo.toml b/cranelift/filetests/Cargo.toml index e7fd2c3bc1..75159a81f7 100644 --- a/cranelift/filetests/Cargo.toml +++ b/cranelift/filetests/Cargo.toml @@ -23,7 +23,6 @@ gimli = { version = "0.21.0", default-features = false, features = ["read"] } log = "0.4.6" memmap = "0.7.0" num_cpus = "1.8.0" -region = "2.1.2" target-lexicon = "0.10" thiserror = "1.0.15" diff --git a/cranelift/interpreter/Cargo.toml b/cranelift/interpreter/Cargo.toml index 1daf35bfb2..8ab7a963f2 100644 --- a/cranelift/interpreter/Cargo.toml +++ b/cranelift/interpreter/Cargo.toml @@ -17,8 +17,6 @@ cranelift-reader = { path = "../reader", version = "0.65.0" } hashbrown = { version = "0.7.1", optional = true } log = { version = "0.4.8", default-features = false } thiserror = "1.0.15" -walkdir = "2.3.1" -pretty_env_logger = "0.4.0" [dev-dependencies] cranelift-frontend = { path = "../frontend", version = "0.65.0" }