Prune some unused dependencies

This commit is contained in:
Richard Feldman 2022-07-11 20:51:41 -04:00
parent 9b0f72bf66
commit f5fac8230f
5 changed files with 0 additions and 45 deletions

28
Cargo.lock generated
View file

@ -3392,7 +3392,6 @@ dependencies = [
"roc_module",
"roc_region",
"roc_target",
"roc_types",
"tempfile",
]
@ -3451,7 +3450,6 @@ dependencies = [
"roc_target",
"roc_test_utils",
"serial_test",
"signal-hook",
"strum",
"strum_macros",
"target-lexicon",
@ -3492,7 +3490,6 @@ name = "roc_constrain"
version = "0.1.0"
dependencies = [
"arrayvec 0.7.2",
"roc_builtins",
"roc_can",
"roc_collections",
"roc_error_macros",
@ -3915,10 +3912,6 @@ name = "roc_repl_expect"
version = "0.1.0"
dependencies = [
"bumpalo",
"const_format",
"inkwell 0.1.0",
"libloading",
"roc_build",
"roc_builtins",
"roc_collections",
"roc_load",
@ -3930,8 +3923,6 @@ dependencies = [
"roc_std",
"roc_target",
"roc_types",
"rustyline",
"rustyline-derive",
"target-lexicon",
]
@ -4389,25 +4380,6 @@ version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
[[package]]
name = "signal-hook"
version = "0.3.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a253b5e89e2698464fc26b545c9edceb338e18a89effeeecfea192c3025be29d"
dependencies = [
"libc",
"signal-hook-registry",
]
[[package]]
name = "signal-hook-registry"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
dependencies = [
"libc",
]
[[package]]
name = "similar"
version = "2.1.0"

View file

@ -64,7 +64,6 @@ bumpalo = { version = "3.8.0", features = ["collections"] }
mimalloc = { version = "0.1.26", default-features = false }
libc = "0.2.106"
errno = "0.2.8"
signal-hook = "0.3.14"
ven_pretty = { path = "../vendor/pretty" }
target-lexicon = "0.12.3"

View file

@ -9,7 +9,6 @@ edition = "2021"
roc_collections = { path = "../collections" }
roc_region = { path = "../region" }
roc_module = { path = "../module" }
roc_types = { path = "../types" }
roc_target = { path = "../roc_target" }
lazy_static = "1.4.0"

View file

@ -13,5 +13,4 @@ roc_module = { path = "../module" }
roc_parse = { path = "../parse" }
roc_types = { path = "../types" }
roc_can = { path = "../can" }
roc_builtins = { path = "../builtins" }
arrayvec = "0.7.2"

View file

@ -5,24 +5,10 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
# pipe target to roc_build
target-aarch64 = ["roc_build/target-aarch64"]
target-arm = ["roc_build/target-arm"]
target-wasm32 = ["roc_build/target-wasm32"]
target-x86 = ["roc_build/target-x86"]
target-x86_64 = ["roc_build/target-x86_64"]
[dependencies]
bumpalo = {version = "3.8.0", features = ["collections"]}
const_format = { version = "0.2.23", features = ["const_generics"] }
inkwell = {path = "../vendor/inkwell"}
libloading = "0.7.1"
rustyline = {git = "https://github.com/rtfeldman/rustyline", rev = "e74333c"}
rustyline-derive = {git = "https://github.com/rtfeldman/rustyline", rev = "e74333c"}
target-lexicon = "0.12.2"
roc_build = {path = "../compiler/build"}
roc_builtins = {path = "../compiler/builtins"}
roc_collections = {path = "../compiler/collections"}
roc_load = {path = "../compiler/load"}