aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-02-18 14:37:34 +0000
committerGitHub <[email protected]>2020-02-18 14:37:34 +0000
commitcecf25b72f2af84fc1535cf52d6f3c1b52802565 (patch)
tree37c8dde0a459caacae6629da08d86be270469ef5 /Cargo.lock
parenteab80cd961919b9321e1d34343ae3f3adb0502e5 (diff)
parentf6816c253b96e8436f1156d6bd6b0942ee9fb4d3 (diff)
Merge #3220
3220: Fix clippy warnings, update Cargo.toml versions r=matklad a=SomeoneToIgnore In the `cargo xtask lint` ouptut, there were two interesting Clippy warnings that might be interesting to investigate further: * warning: this argument (4 byte) is passed by reference, but would be more efficient if passed by value (limit: 8 byte) * warning: large size difference between variants Co-authored-by: Kirill Bulatov <[email protected]>
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock20
1 files changed, 20 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index e7b873076..c10d72aa4 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1043,6 +1043,7 @@ version = "0.1.0"
1043dependencies = [ 1043dependencies = [
1044 "either", 1044 "either",
1045 "format-buf", 1045 "format-buf",
1046 "fst",
1046 "indexmap", 1047 "indexmap",
1047 "insta", 1048 "insta",
1048 "itertools", 1049 "itertools",
@@ -1059,8 +1060,11 @@ dependencies = [
1059 "ra_syntax", 1060 "ra_syntax",
1060 "ra_text_edit", 1061 "ra_text_edit",
1061 "rand", 1062 "rand",
1063 "rayon",
1062 "rustc-hash", 1064 "rustc-hash",
1065 "superslice",
1063 "test_utils", 1066 "test_utils",
1067 "unicase",
1064] 1068]
1065 1069
1066[[package]] 1070[[package]]
@@ -1087,6 +1091,7 @@ dependencies = [
1087 "rustc-hash", 1091 "rustc-hash",
1088 "superslice", 1092 "superslice",
1089 "test_utils", 1093 "test_utils",
1094 "unicase",
1090] 1095]
1091 1096
1092[[package]] 1097[[package]]
@@ -1598,6 +1603,15 @@ dependencies = [
1598] 1603]
1599 1604
1600[[package]] 1605[[package]]
1606name = "unicase"
1607version = "2.6.0"
1608source = "registry+https://github.com/rust-lang/crates.io-index"
1609checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
1610dependencies = [
1611 "version_check",
1612]
1613
1614[[package]]
1601name = "unicode-bidi" 1615name = "unicode-bidi"
1602version = "0.3.4" 1616version = "0.3.4"
1603source = "registry+https://github.com/rust-lang/crates.io-index" 1617source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1640,6 +1654,12 @@ dependencies = [
1640] 1654]
1641 1655
1642[[package]] 1656[[package]]
1657name = "version_check"
1658version = "0.9.1"
1659source = "registry+https://github.com/rust-lang/crates.io-index"
1660checksum = "078775d0255232fb988e6fccf26ddc9d1ac274299aaedcedce21c6f72cc533ce"
1661
1662[[package]]
1643name = "walkdir" 1663name = "walkdir"
1644version = "2.3.1" 1664version = "2.3.1"
1645source = "registry+https://github.com/rust-lang/crates.io-index" 1665source = "registry+https://github.com/rust-lang/crates.io-index"