File tree 4 files changed +10
-10
lines changed 4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ homepage = "https://github.com/uuid-rs/uuid"
30
30
name = " uuid"
31
31
readme = " README.md"
32
32
repository = " https://github.com/uuid-rs/uuid"
33
- version = " 1.7 .0" # remember to update html_root_url in lib.rs
33
+ version = " 1.8 .0" # remember to update html_root_url in lib.rs
34
34
rust-version = " 1.60.0"
35
35
36
36
[package .metadata .docs .rs ]
@@ -146,7 +146,7 @@ version = "1"
146
146
147
147
# Public: Re-exported
148
148
[dependencies .uuid-macro-internal ]
149
- version = " 1.7 .0"
149
+ version = " 1.8 .0"
150
150
path = " macros"
151
151
optional = true
152
152
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.7 .0"
31
+ version = " 1.8 .0"
32
32
features = [
33
33
" v4" , # Lets you generate random UUIDs
34
34
" fast-rng" , # Use a faster (but still sufficiently random) RNG
@@ -65,11 +65,11 @@ assert_eq!(Some(Version::Random), my_uuid.get_version());
65
65
If you'd like to parse UUIDs _ really_ fast, check out the [ ` uuid-simd ` ] ( https://github.com/nugine/uuid-simd )
66
66
library.
67
67
68
- For more details on using ` uuid ` , [ see the library documentation] ( https://docs.rs/uuid/1.7 .0/uuid ) .
68
+ For more details on using ` uuid ` , [ see the library documentation] ( https://docs.rs/uuid/1.8 .0/uuid ) .
69
69
70
70
## References
71
71
72
- * [ ` uuid ` library docs] ( https://docs.rs/uuid/1.7 .0/uuid ) .
72
+ * [ ` uuid ` library docs] ( https://docs.rs/uuid/1.8 .0/uuid ) .
73
73
* [ Wikipedia: Universally Unique Identifier] ( http://en.wikipedia.org/wiki/Universally_unique_identifier ) .
74
74
* [ RFC4122: A Universally Unique IDentifier (UUID) URN Namespace] ( http://tools.ietf.org/html/rfc4122 ) .
75
75
* [ Revision of RFC4122: Universally Unique IDentifiers (UUID)] ( https://www.ietf.org/archive/id/draft-ietf-uuidrev-rfc4122bis-14.html ) .
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " uuid-macro-internal"
3
- version = " 1.7 .0"
3
+ version = " 1.8 .0"
4
4
edition = " 2018"
5
5
authors = [
6
6
" QnnOkabayashi"
Original file line number Diff line number Diff line change 39
39
//!
40
40
//! ```toml
41
41
//! [dependencies.uuid]
42
- //! version = "1.7 .0"
42
+ //! version = "1.8 .0"
43
43
//! features = [
44
44
//! "v4", # Lets you generate random UUIDs
45
45
//! "fast-rng", # Use a faster (but still sufficiently random) RNG
141
141
//!
142
142
//! ```toml
143
143
//! [dependencies.uuid]
144
- //! version = "1.7 .0"
144
+ //! version = "1.8 .0"
145
145
//! features = [
146
146
//! "v4",
147
147
//! "v7",
156
156
//!
157
157
//! ```toml
158
158
//! [dependencies.uuid]
159
- //! version = "1.7 .0"
159
+ //! version = "1.8 .0"
160
160
//! default-features = false
161
161
//! ```
162
162
//!
214
214
#![ doc(
215
215
html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
216
216
html_favicon_url = "https://www.rust-lang.org/favicon.ico" ,
217
- html_root_url = "https://docs.rs/uuid/1.7 .0"
217
+ html_root_url = "https://docs.rs/uuid/1.8 .0"
218
218
) ]
219
219
220
220
#[ cfg( any( feature = "std" , test) ) ]
You can’t perform that action at this time.
0 commit comments