File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ homepage = "https://github.com/uuid-rs/uuid"
2929name = " uuid"
3030readme = " README.md"
3131repository = " https://github.com/uuid-rs/uuid"
32- version = " 1.20 .0" # remember to update html_root_url in lib.rs
32+ version = " 1.21 .0" # remember to update html_root_url in lib.rs
3333rust-version = " 1.85.0"
3434
3535[package .metadata .docs .rs ]
@@ -86,7 +86,7 @@ borsh = ["dep:borsh", "dep:borsh-derive"]
8686
8787# Public: Used in trait impls on `Uuid`
8888[dependencies .bytemuck ]
89- version = " 1.20 .0"
89+ version = " 1.21 .0"
9090optional = true
9191features = [" derive" ]
9292
@@ -140,7 +140,7 @@ optional = true
140140[target .'cfg(all(target_arch = "wasm32", any(target_os = "unknown", target_os = "none")))' .dependencies .uuid-rng-internal-lib ]
141141# Work-around lack of support for both `dep:x` and `x/` in MSRV
142142package = " uuid-rng-internal"
143- version = " 1.20 .0"
143+ version = " 1.21 .0"
144144path = " rng"
145145optional = true
146146
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.20 .0"
31+ version = " 1.21 .0"
3232# Lets you generate random UUIDs
3333features = [
3434 " v4" ,
@@ -64,11 +64,11 @@ assert_eq!(Some(Version::Random), my_uuid.get_version());
6464If you'd like to parse UUIDs _ really_ fast, check out the [ ` uuid-simd ` ] ( https://github.com/nugine/uuid-simd )
6565library.
6666
67- For more details on using ` uuid ` , [ see the library documentation] ( https://docs.rs/uuid/1.20 .0/uuid ) .
67+ For more details on using ` uuid ` , [ see the library documentation] ( https://docs.rs/uuid/1.21 .0/uuid ) .
6868
6969## References
7070
71- * [ ` uuid ` library docs] ( https://docs.rs/uuid/1.20 .0/uuid ) .
71+ * [ ` uuid ` library docs] ( https://docs.rs/uuid/1.21 .0/uuid ) .
7272* [ Wikipedia: Universally Unique Identifier] ( http://en.wikipedia.org/wiki/Universally_unique_identifier ) .
7373* [ RFC 9562: Universally Unique IDentifiers (UUID)] ( https://www.ietf.org/rfc/rfc9562.html ) .
7474
Original file line number Diff line number Diff line change 11[package ]
22name = " uuid-rng-internal"
3- version = " 1.20 .0"
3+ version = " 1.21 .0"
44edition = " 2021"
55authors = [
66 " uuid-rs contributors"
Original file line number Diff line number Diff line change 3838//!
3939//! ```toml
4040//! [dependencies.uuid]
41- //! version = "1.20 .0"
41+ //! version = "1.21 .0"
4242//! # Lets you generate random UUIDs
4343//! features = [
4444//! "v4",
138138//!
139139//! ```toml
140140//! [dependencies.uuid]
141- //! version = "1.20 .0"
141+ //! version = "1.21 .0"
142142//! features = [
143143//! "v4",
144144//! "v7",
153153//!
154154//! ```toml
155155//! [dependencies.uuid]
156- //! version = "1.20 .0"
156+ //! version = "1.21 .0"
157157//! default-features = false
158158//! ```
159159//!
211211#![ doc(
212212 html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
213213 html_favicon_url = "https://www.rust-lang.org/favicon.ico" ,
214- html_root_url = "https://docs.rs/uuid/1.20 .0"
214+ html_root_url = "https://docs.rs/uuid/1.21 .0"
215215) ]
216216
217217#[ cfg( any( feature = "std" , test) ) ]
You can’t perform that action at this time.
0 commit comments