diff options
author | Aleksey Kladov <[email protected]> | 2020-02-26 10:38:33 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-02-26 10:38:33 +0000 |
commit | 80466228712e5a071f09535676f080a71c69024d (patch) | |
tree | 01d79c9c3fbfab35b4932e3426dc6296d8973d69 | |
parent | ae0aeb1b23aa4bc96a7113de784799365c2b4358 (diff) |
Actually drop unicase dependency
-rw-r--r-- | Cargo.lock | 17 | ||||
-rw-r--r-- | crates/ra_ide/Cargo.toml | 1 | ||||
-rw-r--r-- | crates/ra_ide_db/Cargo.toml | 1 |
3 files changed, 0 insertions, 19 deletions
diff --git a/Cargo.lock b/Cargo.lock index e5400f5eb..118cf137e 100644 --- a/Cargo.lock +++ b/Cargo.lock | |||
@@ -1067,7 +1067,6 @@ dependencies = [ | |||
1067 | "rustc-hash", | 1067 | "rustc-hash", |
1068 | "superslice", | 1068 | "superslice", |
1069 | "test_utils", | 1069 | "test_utils", |
1070 | "unicase", | ||
1071 | ] | 1070 | ] |
1072 | 1071 | ||
1073 | [[package]] | 1072 | [[package]] |
@@ -1094,7 +1093,6 @@ dependencies = [ | |||
1094 | "rustc-hash", | 1093 | "rustc-hash", |
1095 | "superslice", | 1094 | "superslice", |
1096 | "test_utils", | 1095 | "test_utils", |
1097 | "unicase", | ||
1098 | ] | 1096 | ] |
1099 | 1097 | ||
1100 | [[package]] | 1098 | [[package]] |
@@ -1606,15 +1604,6 @@ dependencies = [ | |||
1606 | ] | 1604 | ] |
1607 | 1605 | ||
1608 | [[package]] | 1606 | [[package]] |
1609 | name = "unicase" | ||
1610 | version = "2.6.0" | ||
1611 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1612 | checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6" | ||
1613 | dependencies = [ | ||
1614 | "version_check", | ||
1615 | ] | ||
1616 | |||
1617 | [[package]] | ||
1618 | name = "unicode-bidi" | 1607 | name = "unicode-bidi" |
1619 | version = "0.3.4" | 1608 | version = "0.3.4" |
1620 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1609 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1657,12 +1646,6 @@ dependencies = [ | |||
1657 | ] | 1646 | ] |
1658 | 1647 | ||
1659 | [[package]] | 1648 | [[package]] |
1660 | name = "version_check" | ||
1661 | version = "0.9.1" | ||
1662 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1663 | checksum = "078775d0255232fb988e6fccf26ddc9d1ac274299aaedcedce21c6f72cc533ce" | ||
1664 | |||
1665 | [[package]] | ||
1666 | name = "walkdir" | 1649 | name = "walkdir" |
1667 | version = "2.3.1" | 1650 | version = "2.3.1" |
1668 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1651 | source = "registry+https://github.com/rust-lang/crates.io-index" |
diff --git a/crates/ra_ide/Cargo.toml b/crates/ra_ide/Cargo.toml index 3407d2598..6a3112f9c 100644 --- a/crates/ra_ide/Cargo.toml +++ b/crates/ra_ide/Cargo.toml | |||
@@ -20,7 +20,6 @@ log = "0.4.8" | |||
20 | rayon = "1.3.0" | 20 | rayon = "1.3.0" |
21 | fst = { version = "0.3.5", default-features = false } | 21 | fst = { version = "0.3.5", default-features = false } |
22 | rustc-hash = "1.1.0" | 22 | rustc-hash = "1.1.0" |
23 | unicase = "2.6.0" | ||
24 | superslice = "1.0.0" | 23 | superslice = "1.0.0" |
25 | rand = { version = "0.7.3", features = ["small_rng"] } | 24 | rand = { version = "0.7.3", features = ["small_rng"] } |
26 | once_cell = "1.3.1" | 25 | once_cell = "1.3.1" |
diff --git a/crates/ra_ide_db/Cargo.toml b/crates/ra_ide_db/Cargo.toml index ee409e34e..2f5b74b92 100644 --- a/crates/ra_ide_db/Cargo.toml +++ b/crates/ra_ide_db/Cargo.toml | |||
@@ -20,7 +20,6 @@ log = "0.4.8" | |||
20 | rayon = "1.3.0" | 20 | rayon = "1.3.0" |
21 | fst = { version = "0.3.5", default-features = false } | 21 | fst = { version = "0.3.5", default-features = false } |
22 | rustc-hash = "1.1.0" | 22 | rustc-hash = "1.1.0" |
23 | unicase = "2.6.0" | ||
24 | superslice = "1.0.0" | 23 | superslice = "1.0.0" |
25 | once_cell = "1.3.1" | 24 | once_cell = "1.3.1" |
26 | 25 | ||