File tree 2 files changed +1
-21
lines changed
2 files changed +1
-21
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ CFG_RELEASE_NUM=1.12.0
18
18
# An optional number to put after the label, e.g. '.2' -> '-beta.2'
19
19
# NB Make sure it starts with a dot to conform to semver pre-release
20
20
# versions (section 9)
21
- CFG_PRERELEASE_VERSION =.5
21
+ CFG_PRERELEASE_VERSION =.6
22
22
23
23
ifeq ($(CFG_RELEASE_CHANNEL ) ,stable)
24
24
# This is the normal semver version string, e.g. "0.12.0", "0.12.0-nightly"
Original file line number Diff line number Diff line change @@ -1901,26 +1901,6 @@ impl Into<Vec<u8>> for String {
1901
1901
}
1902
1902
}
1903
1903
1904
- #[ stable( feature = "stringfromchars" , since = "1.12.0" ) ]
1905
- impl < ' a > From < & ' a [ char ] > for String {
1906
- #[ inline]
1907
- fn from ( v : & ' a [ char ] ) -> String {
1908
- let mut s = String :: with_capacity ( v. len ( ) ) ;
1909
- for c in v {
1910
- s. push ( * c) ;
1911
- }
1912
- s
1913
- }
1914
- }
1915
-
1916
- #[ stable( feature = "stringfromchars" , since = "1.12.0" ) ]
1917
- impl From < Vec < char > > for String {
1918
- #[ inline]
1919
- fn from ( v : Vec < char > ) -> String {
1920
- String :: from ( v. as_slice ( ) )
1921
- }
1922
- }
1923
-
1924
1904
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1925
1905
impl fmt:: Write for String {
1926
1906
#[ inline]
You can’t perform that action at this time.
0 commit comments