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.14 .0" # remember to update html_root_url in lib.rs
32+ version = " 1.15 .0" # 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.14 .0"
87+ version = " 1.15 .0"
8888optional = true
8989features = [" derive" ]
9090
@@ -135,7 +135,7 @@ optional = true
135135[target .'cfg(all(target_arch = "wasm32", target_vendor = "unknown", target_os = "unknown"))' .dependencies .uuid-rng-internal-lib ]
136136# Work-around lack of support for both `dep:x` and `x/` in MSRV
137137package = " uuid-rng-internal"
138- version = " 1.14 .0"
138+ version = " 1.15 .0"
139139path = " rng"
140140optional = true
141141
@@ -158,7 +158,7 @@ version = "1"
158158
159159# Public: Re-exported
160160[dependencies .uuid-macro-internal ]
161- version = " 1.14 .0"
161+ version = " 1.15 .0"
162162path = " macros"
163163optional = true
164164
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.14 .0"
31+ version = " 1.15 .0"
3232features = [
3333 " v4" , # Lets you generate random UUIDs
3434]
@@ -63,11 +63,11 @@ assert_eq!(Some(Version::Random), my_uuid.get_version());
6363If you'd like to parse UUIDs _ really_ fast, check out the [ ` uuid-simd ` ] ( https://github.com/nugine/uuid-simd )
6464library.
6565
66- For more details on using ` uuid ` , [ see the library documentation] ( https://docs.rs/uuid/1.14 .0/uuid ) .
66+ For more details on using ` uuid ` , [ see the library documentation] ( https://docs.rs/uuid/1.15 .0/uuid ) .
6767
6868## References
6969
70- * [ ` uuid ` library docs] ( https://docs.rs/uuid/1.14 .0/uuid ) .
70+ * [ ` uuid ` library docs] ( https://docs.rs/uuid/1.15 .0/uuid ) .
7171* [ Wikipedia: Universally Unique Identifier] ( http://en.wikipedia.org/wiki/Universally_unique_identifier ) .
7272* [ RFC 9562: Universally Unique IDentifiers (UUID)] ( https://www.ietf.org/rfc/rfc9562.html ) .
7373
Original file line number Diff line number Diff line change 11[package ]
22name = " uuid-macro-internal"
3- version = " 1.14 .0"
3+ version = " 1.15 .0"
44edition = " 2018"
55authors = [
66 " QnnOkabayashi"
Original file line number Diff line number Diff line change 11[package ]
22name = " uuid-rng-internal"
3- version = " 1.14 .0"
3+ version = " 1.15 .0"
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.14 .0"
41+ //! version = "1.15 .0"
4242//! features = [
4343//! "v4", # Lets you generate random UUIDs
4444//! "fast-rng", # Use a faster (but still sufficiently random) RNG
140140//!
141141//! ```toml
142142//! [dependencies.uuid]
143- //! version = "1.14 .0"
143+ //! version = "1.15 .0"
144144//! features = [
145145//! "v4",
146146//! "v7",
155155//!
156156//! ```toml
157157//! [dependencies.uuid]
158- //! version = "1.14 .0"
158+ //! version = "1.15 .0"
159159//! default-features = false
160160//! ```
161161//!
213213#![ doc(
214214 html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
215215 html_favicon_url = "https://www.rust-lang.org/favicon.ico" ,
216- html_root_url = "https://docs.rs/uuid/1.14 .0"
216+ html_root_url = "https://docs.rs/uuid/1.15 .0"
217217) ]
218218
219219#[ cfg( any( feature = "std" , test) ) ]
You can’t perform that action at this time.
0 commit comments