You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This makes assignment more consistent with let bindings, which allow you to do
86
-
the same thing. Note that assignments with operators such as `+=` are not
86
+
the same thing. Note that destructuring assignments with operators such as `+=` are not
87
87
allowed.
88
88
89
89
### Const generics defaults and interleaving
@@ -162,6 +162,8 @@ strip = "debuginfo"
162
162
This causes debuginfo to be stripped from release binaries. You can also supply
163
163
`"symbols"` or just `true` to strip all symbol information where supported.
164
164
165
+
The standard library ships with debug symbols by default, so Rust binaries built without debug symbols enabled still by default include the debug symbols of the standard library. The `strip` allows you to remove those symbols, producing smaller Rust binaries.
166
+
165
167
### Stabilized APIs
166
168
167
169
The following methods and trait implementations were stabilized.
0 commit comments