Drop unused libc deps

This commit is contained in:
Richard Feldman 2021-11-02 16:35:52 -04:00
parent 0bc3ff4ca5
commit ac42470c81
8 changed files with 1064 additions and 15 deletions

5
Cargo.lock generated
View File

@ -3650,7 +3650,6 @@ dependencies = [
"im-rc 14.3.0",
"indoc 0.3.6",
"inkwell 0.1.0",
"libc",
"libloading 0.6.7",
"maplit",
"mimalloc",
@ -3835,7 +3834,6 @@ dependencies = [
"im-rc 14.3.0",
"indoc 0.3.6",
"itertools 0.9.0",
"libc",
"libloading 0.6.7",
"maplit",
"object 0.24.0",
@ -3872,7 +3870,6 @@ dependencies = [
"im-rc 14.3.0",
"indoc 0.3.6",
"inkwell 0.1.0",
"libc",
"maplit",
"morphic_lib",
"pretty_assertions 0.5.1",
@ -3903,7 +3900,6 @@ version = "0.1.0"
dependencies = [
"bumpalo",
"indoc 0.3.6",
"libc",
"parity-wasm",
"pretty_assertions 0.5.1",
"roc_builtins",
@ -4678,7 +4674,6 @@ version = "0.1.0"
dependencies = [
"bumpalo",
"indoc 0.3.6",
"libc",
"pretty_assertions 0.5.1",
"quickcheck 0.8.5",
"quickcheck_macros 0.8.0",

View File

@ -65,7 +65,6 @@ rustyline-derive = { git = "https://github.com/rtfeldman/rustyline", tag = "prom
im = "14" # im and im-rc should always have the same version!
im-rc = "14" # im and im-rc should always have the same version!
bumpalo = { version = "3.2", features = ["collections"] }
libc = "0.2"
libloading = "0.6"
mimalloc = { version = "0.1.26", default-features = false }
@ -90,4 +89,3 @@ cli_utils = { path = "cli_utils" }
[[bench]]
name = "time_bench"
harness = false

View File

@ -37,7 +37,6 @@ quickcheck = "0.8"
quickcheck_macros = "0.8"
tokio = { version = "0.2", features = ["blocking", "fs", "sync", "rt-threaded"] }
bumpalo = { version = "3.6.1", features = ["collections"] }
libc = "0.2"
tempfile = "3.1.0"
itertools = "0.9"
libloading = "0.6"

View File

@ -37,4 +37,3 @@ quickcheck = "0.8"
quickcheck_macros = "0.8"
tokio = { version = "0.2", features = ["blocking", "fs", "sync", "rt-threaded"] }
bumpalo = { version = "3.6.1", features = ["collections"] }
libc = "0.2"

View File

@ -24,7 +24,6 @@ roc_types = { path = "../types" }
roc_module = { path = "../module" }
indoc = "0.3.3"
pretty_assertions = "0.5.1"
libc = "0.2"
target-lexicon = "0.12.2"
tempfile = "3.1.0"
wasmer-wasi = "2.0.0"

File diff suppressed because it is too large Load Diff

View File

@ -5,9 +5,6 @@ authors = ["The Roc Contributors"]
license = "UPL-1.0"
edition = "2018"
[dependencies]
libc = "0.2"
[dev-dependencies]
roc_collections = { path = "../collections" }
roc_module = { path = "../module" }

View File

@ -12,9 +12,9 @@ dependencies = [
[[package]]
name = "libc"
version = "0.2.100"
version = "0.2.106"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1fa8cddc8fbbee11227ef194b5317ed014b8acbf15139bd716a18ad3fe99ec5"
checksum = "a60553f9a9e039a333b4e9b20573b9e9b9c0bb3a11e201ccc48ef4283456d673"
[[package]]
name = "roc_std"