File tree Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ homepage = "https://github.com/uuid-rs/uuid"
2727name = " uuid"
2828readme = " README.md"
2929repository = " https://github.com/uuid-rs/uuid"
30- version = " 1.4.1 " # remember to update html_root_url in lib.rs
30+ version = " 1.5.0 " # remember to update html_root_url in lib.rs
3131rust-version = " 1.57.0"
3232
3333[package .metadata .docs .rs ]
@@ -150,7 +150,7 @@ version = "1"
150150# Use the `macro-diagnostics` feature instead
151151[dependencies .uuid-macro-internal ]
152152package = " uuid-macro-internal"
153- version = " 1.4.1 "
153+ version = " 1.5.0 "
154154path = " macros"
155155optional = true
156156
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ Add the following to your `Cargo.toml`:
2828
2929``` toml
3030[dependencies .uuid ]
31- version = " 1.4.1 "
31+ version = " 1.5.0 "
3232features = [
3333 " v4" , # Lets you generate random UUIDs
3434 " fast-rng" , # Use a faster (but still sufficiently random) RNG
@@ -65,11 +65,11 @@ assert_eq!(Some(Version::Random), my_uuid.get_version());
6565If you'd like to parse UUIDs _ really_ fast, check out the [ ` uuid-simd ` ] ( https://github.com/nugine/uuid-simd )
6666library.
6767
68- For more details on using ` uuid ` , [ see the library documentation] ( https://docs.rs/uuid/1.4.1 /uuid ) .
68+ For more details on using ` uuid ` , [ see the library documentation] ( https://docs.rs/uuid/1.5.0 /uuid ) .
6969
7070## References
7171
72- * [ ` uuid ` library docs] ( https://docs.rs/uuid/1.4.1 /uuid ) .
72+ * [ ` uuid ` library docs] ( https://docs.rs/uuid/1.5.0 /uuid ) .
7373* [ Wikipedia: Universally Unique Identifier] ( http://en.wikipedia.org/wiki/Universally_unique_identifier ) .
7474* [ RFC4122: A Universally Unique IDentifier (UUID) URN Namespace] ( http://tools.ietf.org/html/rfc4122 ) .
7575
Original file line number Diff line number Diff line change 11[package ]
22name = " uuid-macro-internal"
3- version = " 1.4.1 "
3+ version = " 1.5.0 "
44edition = " 2018"
55authors = [
66 " QnnOkabayashi"
Original file line number Diff line number Diff line change 3939//!
4040//! ```toml
4141//! [dependencies.uuid]
42- //! version = "1.4.1 "
42+ //! version = "1.5.0 "
4343//! features = [
4444//! "v4", # Lets you generate random UUIDs
4545//! "fast-rng", # Use a faster (but still sufficiently random) RNG
141141//!
142142//! ```toml
143143//! [dependencies.uuid]
144- //! version = "1.4.1 "
144+ //! version = "1.5.0 "
145145//! features = [
146146//! "v4",
147147//! "v7",
156156//!
157157//! ```toml
158158//! [dependencies.uuid]
159- //! version = "1.4.1 "
159+ //! version = "1.5.0 "
160160//! default-features = false
161161//! ```
162162//!
214214#![ doc(
215215 html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
216216 html_favicon_url = "https://www.rust-lang.org/favicon.ico" ,
217- html_root_url = "https://docs.rs/uuid/1.4.1 "
217+ html_root_url = "https://docs.rs/uuid/1.5.0 "
218218) ]
219219
220220#[ cfg( any( feature = "std" , test) ) ]
You can’t perform that action at this time.
0 commit comments