File tree 5 files changed +13
-13
lines changed
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"
29
29
name = " uuid"
30
30
readme = " README.md"
31
31
repository = " https://github.com/uuid-rs/uuid"
32
- version = " 1.15.1 " # remember to update html_root_url in lib.rs
32
+ version = " 1.16.0 " # remember to update html_root_url in lib.rs
33
33
rust-version = " 1.63.0"
34
34
35
35
[package .metadata .docs .rs ]
@@ -84,7 +84,7 @@ borsh = ["dep:borsh", "dep:borsh-derive"]
84
84
85
85
# Public: Used in trait impls on `Uuid`
86
86
[dependencies .bytemuck ]
87
- version = " 1.15.1 "
87
+ version = " 1.16.0 "
88
88
optional = true
89
89
features = [" derive" ]
90
90
@@ -135,7 +135,7 @@ optional = true
135
135
[target .'cfg(all(target_arch = "wasm32", target_vendor = "unknown", target_os = "unknown"))' .dependencies .uuid-rng-internal-lib ]
136
136
# Work-around lack of support for both `dep:x` and `x/` in MSRV
137
137
package = " uuid-rng-internal"
138
- version = " 1.15.1 "
138
+ version = " 1.16.0 "
139
139
path = " rng"
140
140
optional = true
141
141
@@ -158,7 +158,7 @@ version = "1"
158
158
159
159
# Public: Re-exported
160
160
[dependencies .uuid-macro-internal ]
161
- version = " 1.15.1 "
161
+ version = " 1.16.0 "
162
162
path = " macros"
163
163
optional = true
164
164
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ Add the following to your `Cargo.toml`:
28
28
29
29
``` toml
30
30
[dependencies .uuid ]
31
- version = " 1.15.1 "
31
+ version = " 1.16.0 "
32
32
# Lets you generate random UUIDs
33
33
features = [
34
34
" v4" ,
@@ -64,11 +64,11 @@ assert_eq!(Some(Version::Random), my_uuid.get_version());
64
64
If you'd like to parse UUIDs _ really_ fast, check out the [ ` uuid-simd ` ] ( https://github.com/nugine/uuid-simd )
65
65
library.
66
66
67
- For more details on using ` uuid ` , [ see the library documentation] ( https://docs.rs/uuid/1.15.1 /uuid ) .
67
+ For more details on using ` uuid ` , [ see the library documentation] ( https://docs.rs/uuid/1.16.0 /uuid ) .
68
68
69
69
## References
70
70
71
- * [ ` uuid ` library docs] ( https://docs.rs/uuid/1.15.1 /uuid ) .
71
+ * [ ` uuid ` library docs] ( https://docs.rs/uuid/1.16.0 /uuid ) .
72
72
* [ Wikipedia: Universally Unique Identifier] ( http://en.wikipedia.org/wiki/Universally_unique_identifier ) .
73
73
* [ RFC 9562: Universally Unique IDentifiers (UUID)] ( https://www.ietf.org/rfc/rfc9562.html ) .
74
74
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " uuid-macro-internal"
3
- version = " 1.15.1 "
3
+ version = " 1.16.0 "
4
4
edition = " 2018"
5
5
authors = [
6
6
" QnnOkabayashi"
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " uuid-rng-internal"
3
- version = " 1.15.1 "
3
+ version = " 1.16.0 "
4
4
edition = " 2018"
5
5
authors = [
6
6
" uuid-rs contributors"
Original file line number Diff line number Diff line change 38
38
//!
39
39
//! ```toml
40
40
//! [dependencies.uuid]
41
- //! version = "1.15.1 "
41
+ //! version = "1.16.0 "
42
42
//! # Lets you generate random UUIDs
43
43
//! features = [
44
44
//! "v4",
139
139
//!
140
140
//! ```toml
141
141
//! [dependencies.uuid]
142
- //! version = "1.15.1 "
142
+ //! version = "1.16.0 "
143
143
//! features = [
144
144
//! "v4",
145
145
//! "v7",
154
154
//!
155
155
//! ```toml
156
156
//! [dependencies.uuid]
157
- //! version = "1.15.1 "
157
+ //! version = "1.16.0 "
158
158
//! default-features = false
159
159
//! ```
160
160
//!
212
212
#![ doc(
213
213
html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
214
214
html_favicon_url = "https://www.rust-lang.org/favicon.ico" ,
215
- html_root_url = "https://docs.rs/uuid/1.15.1 "
215
+ html_root_url = "https://docs.rs/uuid/1.16.0 "
216
216
) ]
217
217
218
218
#[ cfg( any( feature = "std" , test) ) ]
You can’t perform that action at this time.
0 commit comments