File tree Expand file tree Collapse file tree 6 files changed +18
-18
lines changed
Expand file tree Collapse file tree 6 files changed +18
-18
lines changed Original file line number Diff line number Diff line change 11[package ]
22name = " string_cache"
3- version = " 0.8.9 " # Also update README.md when making a semver-breaking change
3+ version = " 0.9.0 " # Also update README.md when making a semver-breaking change
44authors = [" The Servo Project Developers" ]
55description = " A string interning library for Rust, developed as part of the Servo project."
66license = " MIT OR Apache-2.0"
@@ -26,7 +26,7 @@ default = ["serde_support"]
2626precomputed-hash = " 0.1"
2727serde = { version = " 1" , optional = true }
2828malloc_size_of = { version = " 0.1" , default-features = false , optional = true }
29- phf_shared = " 0.11 "
29+ phf_shared = " 0.13 "
3030new_debug_unreachable = " 1.0.2"
3131parking_lot = " 0.12"
3232
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ In `Cargo.toml`:
1212
1313``` toml
1414[dependencies ]
15- string_cache = " 0.8 "
15+ string_cache = " 0.9 "
1616```
1717
1818In ` lib.rs ` :
@@ -31,10 +31,10 @@ In `Cargo.toml`:
3131build = " build.rs"
3232
3333[dependencies ]
34- string_cache = " 0.8 "
34+ string_cache = " 0.9 "
3535
3636[build-dependencies ]
37- string_cache_codegen = " 0.5 "
37+ string_cache_codegen = " 0.6 "
3838```
3939
4040In ` build.rs ` :
Original file line number Diff line number Diff line change @@ -16,11 +16,11 @@ test = true
1616unstable = []
1717
1818[dependencies ]
19- string_cache = { version = " 0.8 " , path = " .." }
19+ string_cache = { version = " 0.9 " , path = " .." }
2020
2121[dev-dependencies ]
2222rand = " 0.8"
23- string_cache_codegen = { version = " 0.5 " , path = " ../string-cache-codegen" }
23+ string_cache_codegen = { version = " 0.6 " , path = " ../string-cache-codegen" }
2424
2525[build-dependencies ]
26- string_cache_codegen = { version = " 0.5 " , path = " ../string-cache-codegen" }
26+ string_cache_codegen = { version = " 0.6 " , path = " ../string-cache-codegen" }
Original file line number Diff line number Diff line change 2525//! In `Cargo.toml`:
2626//! ```toml
2727//! [dependencies]
28- //! string_cache = "0.8 "
28+ //! string_cache = "0.9 "
2929//!
3030//! [dev-dependencies]
31- //! string_cache_codegen = "0.5 "
31+ //! string_cache_codegen = "0.6 "
3232//! ```
3333//!
3434//! In `build.rs`:
Original file line number Diff line number Diff line change 11[package ]
22name = " string_cache_codegen"
3- version = " 0.5.4 " # Also update ../README.md when making a semver-breaking change
3+ version = " 0.6.0 " # Also update ../README.md when making a semver-breaking change
44authors = [ " The Servo Project Developers" ]
55description = " A codegen library for string-cache, developed as part of the Servo project."
66license = " MIT OR Apache-2.0"
@@ -13,7 +13,7 @@ name = "string_cache_codegen"
1313path = " lib.rs"
1414
1515[dependencies ]
16- phf_generator = " 0.11 "
17- phf_shared = " 0.11 "
16+ phf_generator = " 0.13 "
17+ phf_shared = " 0.13 "
1818proc-macro2 = " 1"
1919quote = " 1"
Original file line number Diff line number Diff line change 1919//! build = "build.rs"
2020//!
2121//! [dependencies]
22- //! string_cache = "0.8 "
22+ //! string_cache = "0.9 "
2323//!
2424//! [build-dependencies]
25- //! string_cache_codegen = "0.5 "
25+ //! string_cache_codegen = "0.6 "
2626//! ```
2727//!
2828//! In `build.rs`:
@@ -183,8 +183,8 @@ impl AtomType {
183183
184184 #[ cfg( test) ]
185185 /// Write generated code to destination [`Vec<u8>`] and return it as [`String`]
186- ///
187- /// Used mostly for testing or displaying a value.
186+ ///
187+ /// Used mostly for testing or displaying a value.
188188 pub fn write_to_string ( & mut self , mut destination : Vec < u8 > ) -> io:: Result < String >
189189 {
190190 destination. write_all (
@@ -347,4 +347,4 @@ fn test_iteration_order() {
347347 . write_to_string ( Vec :: new ( ) ) . expect ( "write to string cache x2" ) ;
348348
349349 assert_eq ! ( x1, x2) ;
350- }
350+ }
You can’t perform that action at this time.
0 commit comments