From 14dc4dec88a9a01fb37ffb46162e6e4acbe88b8c Mon Sep 17 00:00:00 2001 From: Richard Feldman Date: Tue, 2 Nov 2021 15:47:48 -0400 Subject: [PATCH] Drop unused inlinable_string dep --- Cargo.lock | 8 -------- cli/cli_utils/Cargo.toml | 3 +-- compiler/build/Cargo.toml | 1 - 3 files changed, 1 insertion(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c4b9721e18..7e9d9c1185 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -498,7 +498,6 @@ version = "0.1.0" dependencies = [ "bumpalo", "criterion", - "inlinable_string", "rlimit", "roc_cli", "roc_collections", @@ -1851,12 +1850,6 @@ dependencies = [ "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]] name = "inplace_it" version = "0.3.3" @@ -3579,7 +3572,6 @@ dependencies = [ "im-rc 14.3.0", "indoc 0.3.6", "inkwell 0.1.0", - "inlinable_string", "libloading 0.6.7", "maplit", "pretty_assertions 0.5.1", diff --git a/cli/cli_utils/Cargo.toml b/cli/cli_utils/Cargo.toml index faf1da7fa9..6a5ceeccc7 100644 --- a/cli/cli_utils/Cargo.toml +++ b/cli/cli_utils/Cargo.toml @@ -15,8 +15,7 @@ roc_collections = { path = "../../compiler/collections" } roc_load = { path = "../../compiler/load" } roc_module = { path = "../../compiler/module" } bumpalo = { version = "3.6.1", features = ["collections"] } -criterion = { git = "https://github.com/Anton-4/criterion.rs"} -inlinable_string = "0.1" +criterion = { git = "https://github.com/Anton-4/criterion.rs"} serde = { version = "1.0", features = ["derive"] } serde-xml-rs = "0.4" strip-ansi-escapes = "0.1" diff --git a/compiler/build/Cargo.toml b/compiler/build/Cargo.toml index 5c525ea89c..0233792f31 100644 --- a/compiler/build/Cargo.toml +++ b/compiler/build/Cargo.toml @@ -27,7 +27,6 @@ roc_std = { path = "../../roc_std" } 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.6.1", features = ["collections"] } -inlinable_string = "0.1.0" libloading = "0.6" tempfile = "3.1.0" serde_json = "1.0"