remove unused dependencies and ignore false positives

This commit is contained in:
Brendan Hansknecht 2023-03-06 20:09:01 -08:00
parent 75e23c0ee9
commit 75e996c445
No known key found for this signature in database
GPG key ID: 0EA784685083E75B
9 changed files with 12 additions and 10 deletions

4
Cargo.lock generated
View file

@ -463,7 +463,6 @@ dependencies = [
"roc_utils",
"serde",
"serde-xml-rs",
"strip-ansi-escapes",
"tempfile",
]
@ -3196,7 +3195,6 @@ dependencies = [
name = "roc_derive_key"
version = "0.0.1"
dependencies = [
"roc_can",
"roc_collections",
"roc_error_macros",
"roc_module",
@ -3702,7 +3700,6 @@ dependencies = [
"roc_reporting",
"roc_target",
"roc_types",
"roc_utils",
"tempfile",
"wasi_libc_sys",
"wasm-bindgen",
@ -3800,7 +3797,6 @@ name = "roc_std"
version = "0.0.1"
dependencies = [
"arrayvec 0.7.2",
"indoc",
"libc",
"pretty_assertions",
"quickcheck",

View file

@ -19,7 +19,6 @@ bumpalo.workspace = true
criterion.workspace = true
serde-xml-rs.workspace = true
serde.workspace = true
strip-ansi-escapes.workspace = true
tempfile.workspace = true
[target.'cfg(unix)'.dependencies]

View file

@ -7,7 +7,6 @@ license.workspace = true
version.workspace = true
[dependencies]
roc_can = { path = "../can" }
roc_collections = { path = "../collections" }
roc_error_macros = { path = "../../error_macros" }
roc_module = { path = "../module" }

View file

@ -67,3 +67,6 @@ gen-wasm = []
[[bench]]
name = "list_map"
harness = false
[package.metadata.cargo-udeps.ignore]
development = ["roc_wasm_interp"]

View file

@ -30,3 +30,6 @@ target-x86_64 = ["roc_build/target-x86_64", "roc_repl_cli/target-x86_64"]
wasm = ["target-wasm32"]
target-all = ["target-aarch64", "target-arm", "target-x86", "target-x86_64", "target-wasm32"]
[package.metadata.cargo-udeps.ignore]
development = ["roc_wasm_interp"]

View file

@ -12,7 +12,6 @@ crate-type = ["cdylib"]
[build-dependencies]
roc_builtins = { path = "../compiler/builtins" }
roc_utils = { path = "../utils" }
wasi_libc_sys = { path = "../wasi-libc-sys" }
tempfile.workspace = true

View file

@ -15,7 +15,6 @@ serde = { workspace = true, optional = true }
static_assertions.workspace = true
[dev-dependencies]
indoc.workspace = true
libc.workspace = true
pretty_assertions.workspace = true
quickcheck.workspace = true
@ -25,3 +24,6 @@ serde_json.workspace = true
[features]
serde = ["dep:serde"]
std = []
[package.metadata.cargo-udeps.ignore]
development = ["quickcheck_macros", "serde_json"]

View file

@ -1,7 +1,5 @@
#[macro_use]
extern crate pretty_assertions;
// #[macro_use]
// extern crate indoc;
extern crate quickcheck;
extern crate roc_std;

View file

@ -19,3 +19,6 @@ bumpalo.workspace = true
indoc.workspace = true
target-lexicon.workspace = true
tempfile.workspace = true
[package.metadata.cargo-udeps.ignore]
development = ["roc_build", "roc_linker"]