Drop unused inlinable_string dep

This commit is contained in:
Richard Feldman 2021-11-02 15:47:48 -04:00
parent 10fe5b361e
commit 14dc4dec88
3 changed files with 1 additions and 11 deletions

8
Cargo.lock generated
View file

@ -498,7 +498,6 @@ version = "0.1.0"
dependencies = [ dependencies = [
"bumpalo", "bumpalo",
"criterion", "criterion",
"inlinable_string",
"rlimit", "rlimit",
"roc_cli", "roc_cli",
"roc_collections", "roc_collections",
@ -1851,12 +1850,6 @@ dependencies = [
"syn 1.0.76", "syn 1.0.76",
] ]
[[package]]
name = "inlinable_string"
version = "0.1.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3094308123a0e9fd59659ce45e22de9f53fc1d2ac6e1feb9fef988e4f76cad77"
[[package]] [[package]]
name = "inplace_it" name = "inplace_it"
version = "0.3.3" version = "0.3.3"
@ -3579,7 +3572,6 @@ dependencies = [
"im-rc 14.3.0", "im-rc 14.3.0",
"indoc 0.3.6", "indoc 0.3.6",
"inkwell 0.1.0", "inkwell 0.1.0",
"inlinable_string",
"libloading 0.6.7", "libloading 0.6.7",
"maplit", "maplit",
"pretty_assertions 0.5.1", "pretty_assertions 0.5.1",

View file

@ -16,7 +16,6 @@ roc_load = { path = "../../compiler/load" }
roc_module = { path = "../../compiler/module" } roc_module = { path = "../../compiler/module" }
bumpalo = { version = "3.6.1", features = ["collections"] } bumpalo = { version = "3.6.1", features = ["collections"] }
criterion = { git = "https://github.com/Anton-4/criterion.rs"} criterion = { git = "https://github.com/Anton-4/criterion.rs"}
inlinable_string = "0.1"
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
serde-xml-rs = "0.4" serde-xml-rs = "0.4"
strip-ansi-escapes = "0.1" strip-ansi-escapes = "0.1"

View file

@ -27,7 +27,6 @@ roc_std = { path = "../../roc_std" }
im = "14" # im and im-rc should always have the same version! 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! im-rc = "14" # im and im-rc should always have the same version!
bumpalo = { version = "3.6.1", features = ["collections"] } bumpalo = { version = "3.6.1", features = ["collections"] }
inlinable_string = "0.1.0"
libloading = "0.6" libloading = "0.6"
tempfile = "3.1.0" tempfile = "3.1.0"
serde_json = "1.0" serde_json = "1.0"