remove unused dependencies

This commit is contained in:
Brendan Hansknecht 2023-03-06 12:09:00 -08:00
parent 6a958b17c6
commit 21af20597e
No known key found for this signature in database
GPG Key ID: 0EA784685083E75B
9 changed files with 0 additions and 27 deletions

11
Cargo.lock generated
View File

@ -3015,7 +3015,6 @@ name = "roc_build"
version = "0.0.1"
dependencies = [
"bumpalo",
"const_format",
"indoc",
"inkwell",
"libloading",
@ -3397,7 +3396,6 @@ dependencies = [
"roc_reporting",
"roc_std",
"roc_target",
"roc_test_utils",
"roc_tracing",
"roc_types",
"strum",
@ -3561,8 +3559,6 @@ dependencies = [
"bumpalo",
"flate2",
"fs_extra",
"indoc",
"pretty_assertions",
"reqwest",
"roc_error_macros",
"roc_parse",
@ -3586,7 +3582,6 @@ dependencies = [
"roc_collections",
"roc_module",
"roc_region",
"roc_test_utils",
]
[[package]]
@ -3688,7 +3683,6 @@ dependencies = [
"strip-ansi-escapes",
"target-lexicon",
"tempfile",
"test_gen",
]
[[package]]
@ -3855,12 +3849,10 @@ name = "roc_unify"
version = "0.0.1"
dependencies = [
"bitflags",
"roc_can",
"roc_collections",
"roc_debug_flags",
"roc_error_macros",
"roc_module",
"roc_solve_problem",
"roc_tracing",
"roc_types",
]
@ -4478,9 +4470,7 @@ name = "test_derive"
version = "0.0.1"
dependencies = [
"bumpalo",
"indoc",
"insta",
"pretty_assertions",
"roc_builtins",
"roc_can",
"roc_collections",
@ -4940,7 +4930,6 @@ dependencies = [
"cli_utils",
"indoc",
"roc_build",
"roc_cli",
"roc_linker",
"roc_load",
"roc_mono",

View File

@ -33,7 +33,6 @@ roc_linker = { path = "../../linker" }
wasi_libc_sys = { path = "../../wasi-libc-sys" }
const_format.workspace = true
bumpalo.workspace = true
libloading.workspace = true
tempfile.workspace = true

View File

@ -18,7 +18,6 @@ bumpalo.workspace = true
encode_unicode.workspace = true
[dev-dependencies]
roc_test_utils = { path = "../../test_utils" }
proptest = "1.0.0"
criterion.workspace = true

View File

@ -30,6 +30,4 @@ roc_debug_flags = { path = "../debug_flags" }
ven_pretty = { path = "../../vendor/pretty" }
bumpalo.workspace = true
indoc.workspace = true
pretty_assertions.workspace = true
insta.workspace = true

View File

@ -24,11 +24,5 @@ path = "../types"
[dependencies.roc_debug_flags]
path = "../debug_flags"
[dependencies.roc_can]
path = "../can"
[dependencies.roc_solve_problem]
path = "../solve_problem"
[dependencies.roc_tracing]
path = "../../tracing"

View File

@ -33,5 +33,4 @@ pretty_assertions = "1.3.0"
tempfile = "3.2.0"
indoc = "1.0.7"
cli_utils = { path = "../cli_utils" }
roc_test_utils = { path = "../test_utils" }
dircpy = "0.3.13"

View File

@ -27,7 +27,4 @@ tempfile.workspace = true
reqwest = { version = "0.11.13", default-features = false, features = [ "blocking", "rustls-tls" ] }
[dev-dependencies]
pretty_assertions = "1.3.0"
indoc = "1.0.7"
tempfile.workspace = true

View File

@ -33,7 +33,6 @@ roc_build = { path = "../compiler/build" }
roc_error_macros = { path = "../error_macros" }
[dev-dependencies]
test_gen = { path = "../compiler/test_gen" }
roc_build = { path = "../compiler/build", features = ["target-aarch64", "target-x86_64"] }
tempfile.workspace = true

View File

@ -6,7 +6,6 @@ authors = ["The Roc Contributors"]
license = "UPL-1.0"
[dev-dependencies]
roc_cli = { path = "../cli" }
cli_utils = { path = "../cli_utils" }
roc_build = { path = "../compiler/build" }
roc_mono = { path = "../compiler/mono" }