File tree Expand file tree Collapse file tree 6 files changed +12
-12
lines changed
Expand file tree Collapse file tree 6 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 11[package ]
22name = " string_cache"
3- version = " 0.7.4 " # Also update README.md when making a semver-breaking change
3+ version = " 0.8.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 / Apache-2.0"
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.7 "
15+ string_cache = " 0.8 "
1616```
1717
1818In ` lib.rs ` :
@@ -31,10 +31,10 @@ In `Cargo.toml`:
3131build = " build.rs"
3232
3333[dependencies ]
34- string_cache = " 0.7 "
34+ string_cache = " 0.8 "
3535
3636[build-dependencies ]
37- string_cache_codegen = " 0.4 "
37+ string_cache_codegen = " 0.5 "
3838```
3939
4040In ` build.rs ` :
Original file line number Diff line number Diff line change @@ -15,11 +15,11 @@ test = true
1515unstable = []
1616
1717[dependencies ]
18- string_cache = { version = " 0.7 " , path = " .." }
18+ string_cache = { version = " 0.8 " , path = " .." }
1919
2020[dev-dependencies ]
2121rand = " 0.7"
22- string_cache_codegen = { version = " 0.4 " , path = " ../string-cache-codegen" }
22+ string_cache_codegen = { version = " 0.5 " , path = " ../string-cache-codegen" }
2323
2424[build-dependencies ]
25- string_cache_codegen = { version = " 0.4 " , path = " ../string-cache-codegen" }
25+ string_cache_codegen = { version = " 0.5 " , 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.7 "
28+ //! string_cache = "0.8 "
2929//!
3030//! [dev-dependencies]
31- //! string_cache_codegen = "0.4 "
31+ //! string_cache_codegen = "0.5 "
3232//! ```
3333//!
3434//! In `build.rs`:
Original file line number Diff line number Diff line change 11[package ]
22
33name = " string_cache_codegen"
4- version = " 0.4.4 " # Also update ../README.md when making a semver-breaking change
4+ version = " 0.5.0 " # Also update ../README.md when making a semver-breaking change
55authors = [ " The Servo Project Developers" ]
66description = " A codegen library for string-cache, developed as part of the Servo project."
77license = " MIT / Apache-2.0"
Original file line number Diff line number Diff line change 1919//! build = "build.rs"
2020//!
2121//! [dependencies]
22- //! string_cache = "0.7 "
22+ //! string_cache = "0.8 "
2323//!
2424//! [build-dependencies]
25- //! string_cache_codegen = "0.4 "
25+ //! string_cache_codegen = "0.5 "
2626//! ```
2727//!
2828//! In `build.rs`:
You can’t perform that action at this time.
0 commit comments