File tree Expand file tree Collapse file tree 5 files changed +13
-13
lines changed Expand file tree Collapse file tree 5 files changed +13
-13
lines changed 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.18.0 " # remember to update html_root_url in lib.rs
32+ version = " 1.18.1 " # remember to update html_root_url in lib.rs
3333rust-version = " 1.63.0"
3434
3535[package .metadata .docs .rs ]
@@ -84,7 +84,7 @@ borsh = ["dep:borsh", "dep:borsh-derive"]
8484
8585# Public: Used in trait impls on `Uuid`
8686[dependencies .bytemuck ]
87- version = " 1.18.0 "
87+ version = " 1.18.1 "
8888optional = true
8989features = [" derive" ]
9090
@@ -138,7 +138,7 @@ optional = true
138138[target .'cfg(all(target_arch = "wasm32", any(target_os = "unknown", target_os = "none")))' .dependencies .uuid-rng-internal-lib ]
139139# Work-around lack of support for both `dep:x` and `x/` in MSRV
140140package = " uuid-rng-internal"
141- version = " 1.18.0 "
141+ version = " 1.18.1 "
142142path = " rng"
143143optional = true
144144
@@ -161,7 +161,7 @@ version = "1"
161161
162162# Public: Re-exported
163163[dependencies .uuid-macro-internal ]
164- version = " 1.18.0 "
164+ version = " 1.18.1 "
165165path = " macros"
166166optional = true
167167
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.18.0 "
31+ version = " 1.18.1 "
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.18.0 /uuid ) .
67+ For more details on using ` uuid ` , [ see the library documentation] ( https://docs.rs/uuid/1.18.1 /uuid ) .
6868
6969## References
7070
71- * [ ` uuid ` library docs] ( https://docs.rs/uuid/1.18.0 /uuid ) .
71+ * [ ` uuid ` library docs] ( https://docs.rs/uuid/1.18.1 /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-macro-internal"
3- version = " 1.18.0 "
3+ version = " 1.18.1 "
44edition = " 2018"
55authors = [
66 " QnnOkabayashi"
Original file line number Diff line number Diff line change 11[package ]
22name = " uuid-rng-internal"
3- version = " 1.18.0 "
3+ version = " 1.18.1 "
44edition = " 2018"
55authors = [
66 " uuid-rs contributors"
Original file line number Diff line number Diff line change 3838//!
3939//! ```toml
4040//! [dependencies.uuid]
41- //! version = "1.18.0 "
41+ //! version = "1.18.1 "
4242//! # Lets you generate random UUIDs
4343//! features = [
4444//! "v4",
139139//!
140140//! ```toml
141141//! [dependencies.uuid]
142- //! version = "1.18.0 "
142+ //! version = "1.18.1 "
143143//! features = [
144144//! "v4",
145145//! "v7",
154154//!
155155//! ```toml
156156//! [dependencies.uuid]
157- //! version = "1.18.0 "
157+ //! version = "1.18.1 "
158158//! default-features = false
159159//! ```
160160//!
212212#![ doc(
213213 html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
214214 html_favicon_url = "https://www.rust-lang.org/favicon.ico" ,
215- html_root_url = "https://docs.rs/uuid/1.18.0 "
215+ html_root_url = "https://docs.rs/uuid/1.18.1 "
216216) ]
217217
218218#[ cfg( any( feature = "std" , test) ) ]
You can’t perform that action at this time.
0 commit comments