Skip to content

Commit b7138a8

Browse files
committed
Auto merge of rust-lang#18036 - Veykril:smol_str, r=Veykril
Bump `smol_str`
2 parents c01d5e0 + 17e5f01 commit b7138a8

File tree

2 files changed

+20
-4
lines changed

2 files changed

+20
-4
lines changed

src/tools/rust-analyzer/Cargo.lock

+19-3
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,15 @@ version = "2.6.0"
9696
source = "registry+https://github.com/rust-lang/crates.io-index"
9797
checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
9898

99+
[[package]]
100+
name = "borsh"
101+
version = "1.5.1"
102+
source = "registry+https://github.com/rust-lang/crates.io-index"
103+
checksum = "a6362ed55def622cddc70a4746a68554d7b687713770de539e59a739b249f8ed"
104+
dependencies = [
105+
"cfg_aliases 0.2.1",
106+
]
107+
99108
[[package]]
100109
name = "byteorder"
101110
version = "1.5.0"
@@ -167,6 +176,12 @@ version = "0.1.1"
167176
source = "registry+https://github.com/rust-lang/crates.io-index"
168177
checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e"
169178

179+
[[package]]
180+
name = "cfg_aliases"
181+
version = "0.2.1"
182+
source = "registry+https://github.com/rust-lang/crates.io-index"
183+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
184+
170185
[[package]]
171186
name = "chalk-derive"
172187
version = "0.98.0"
@@ -1114,7 +1129,7 @@ checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4"
11141129
dependencies = [
11151130
"bitflags 2.6.0",
11161131
"cfg-if",
1117-
"cfg_aliases",
1132+
"cfg_aliases 0.1.1",
11181133
"libc",
11191134
]
11201135

@@ -1844,10 +1859,11 @@ checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
18441859

18451860
[[package]]
18461861
name = "smol_str"
1847-
version = "0.2.2"
1862+
version = "0.3.1"
18481863
source = "registry+https://github.com/rust-lang/crates.io-index"
1849-
checksum = "dd538fb6910ac1099850255cf94a94df6551fbdd602454387d0adb2d1ca6dead"
1864+
checksum = "66eaf762c5af19db3108300515c8aa7a50efc90ff745f4c62288052ebf9fdd25"
18501865
dependencies = [
1866+
"borsh",
18511867
"serde",
18521868
]
18531869

src/tools/rust-analyzer/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ smallvec = { version = "1.10.0", features = [
145145
"union",
146146
"const_generics",
147147
] }
148-
smol_str = "0.2.1"
148+
smol_str = "0.3.1"
149149
snap = "1.1.0"
150150
text-size = "1.1.1"
151151
tracing = "0.1.40"

0 commit comments

Comments
 (0)