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.2.1 " # remember to update html_root_url in lib.rs
30+ version = " 1.2.2 " # remember to update html_root_url in lib.rs
3131
3232[package .metadata .docs .rs ]
3333rustc-args = [" --cfg" , " uuid_unstable" ]
@@ -134,7 +134,7 @@ version = "1"
134134# Use the `macro-diagnostics` feature instead
135135[dependencies .uuid-macro-internal ]
136136package = " uuid-macro-internal"
137- version = " 1.2.1 "
137+ version = " 1.2.2 "
138138path = " macros"
139139optional = true
140140
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ Add the following to your `Cargo.toml`:
2929
3030``` toml
3131[dependencies .uuid ]
32- version = " 1.2.1 "
32+ version = " 1.2.2 "
3333features = [
3434 " v4" , # Lets you generate random UUIDs
3535 " fast-rng" , # Use a faster (but still sufficiently random) RNG
@@ -66,7 +66,7 @@ assert_eq!(Some(Version::Random), my_uuid.get_version());
6666If you'd like to parse UUIDs _ really_ fast, check out the [ ` uuid-simd ` ] ( https://github.com/nugine/uuid-simd )
6767library.
6868
69- For more details on using ` uuid ` , [ see the library documentation] ( https://docs.rs/uuid/1.2.1 /uuid ) .
69+ For more details on using ` uuid ` , [ see the library documentation] ( https://docs.rs/uuid/1.2.2 /uuid ) .
7070
7171## Minimum Supported Rust Version (MSRV)
7272
@@ -75,7 +75,7 @@ CI. It may be bumped in minor releases as necessary.
7575
7676## References
7777
78- * [ ` uuid ` library docs] ( https://docs.rs/uuid/1.2.1 /uuid ) .
78+ * [ ` uuid ` library docs] ( https://docs.rs/uuid/1.2.2 /uuid ) .
7979* [ Wikipedia: Universally Unique Identifier] ( http://en.wikipedia.org/wiki/Universally_unique_identifier ) .
8080* [ RFC4122: A Universally Unique IDentifier (UUID) URN Namespace] ( http://tools.ietf.org/html/rfc4122 ) .
8181
Original file line number Diff line number Diff line change 11[package ]
22name = " uuid-macro-internal"
3- version = " 1.2.1 "
3+ version = " 1.2.2 "
44edition = " 2018"
55authors = [
66 " QnnOkabayashi"
Original file line number Diff line number Diff line change 3939//!
4040//! ```toml
4141//! [dependencies.uuid]
42- //! version = "1.2.1 "
42+ //! version = "1.2.2 "
4343//! features = [
4444//! "v4", # Lets you generate random UUIDs
4545//! "fast-rng", # Use a faster (but still sufficiently random) RNG
138138//!
139139//! ```toml
140140//! [dependencies.uuid]
141- //! version = "1.2.1 "
141+ //! version = "1.2.2 "
142142//! features = [
143143//! "v4",
144144//! "v7",
153153//!
154154//! ```toml
155155//! [dependencies.uuid]
156- //! version = "1.2.1 "
156+ //! version = "1.2.2 "
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.2.1 "
214+ html_root_url = "https://docs.rs/uuid/1.2.2 "
215215) ]
216216
217217#[ cfg( any( feature = "std" , test) ) ]
You can’t perform that action at this time.
0 commit comments