Commit 80ec18c 1 parent 4297536 commit 80ec18c Copy full SHA for 80ec18c
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 @@ -27,7 +27,7 @@ homepage = "https://github.com/uuid-rs/uuid"
27
27
name = " uuid"
28
28
readme = " README.md"
29
29
repository = " https://github.com/uuid-rs/uuid"
30
- version = " 1.3.3 " # remember to update html_root_url in lib.rs
30
+ version = " 1.3.4 " # remember to update html_root_url in lib.rs
31
31
32
32
[package .metadata .docs .rs ]
33
33
rustc-args = [" --cfg" , " uuid_unstable" ]
@@ -134,7 +134,7 @@ version = "1"
134
134
# Use the `macro-diagnostics` feature instead
135
135
[dependencies .uuid-macro-internal ]
136
136
package = " uuid-macro-internal"
137
- version = " 1.3.3 "
137
+ version = " 1.3.4 "
138
138
path = " macros"
139
139
optional = true
140
140
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ Add the following to your `Cargo.toml`:
29
29
30
30
``` toml
31
31
[dependencies .uuid ]
32
- version = " 1.3.3 "
32
+ version = " 1.3.4 "
33
33
features = [
34
34
" v4" , # Lets you generate random UUIDs
35
35
" fast-rng" , # Use a faster (but still sufficiently random) RNG
@@ -66,7 +66,7 @@ assert_eq!(Some(Version::Random), my_uuid.get_version());
66
66
If you'd like to parse UUIDs _ really_ fast, check out the [ ` uuid-simd ` ] ( https://github.com/nugine/uuid-simd )
67
67
library.
68
68
69
- For more details on using ` uuid ` , [ see the library documentation] ( https://docs.rs/uuid/1.3.3 /uuid ) .
69
+ For more details on using ` uuid ` , [ see the library documentation] ( https://docs.rs/uuid/1.3.4 /uuid ) .
70
70
71
71
## Minimum Supported Rust Version (MSRV)
72
72
@@ -75,7 +75,7 @@ CI. It may be bumped in minor releases as necessary.
75
75
76
76
## References
77
77
78
- * [ ` uuid ` library docs] ( https://docs.rs/uuid/1.3.3 /uuid ) .
78
+ * [ ` uuid ` library docs] ( https://docs.rs/uuid/1.3.4 /uuid ) .
79
79
* [ Wikipedia: Universally Unique Identifier] ( http://en.wikipedia.org/wiki/Universally_unique_identifier ) .
80
80
* [ RFC4122: A Universally Unique IDentifier (UUID) URN Namespace] ( http://tools.ietf.org/html/rfc4122 ) .
81
81
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " uuid-macro-internal"
3
- version = " 1.3.3 "
3
+ version = " 1.3.4 "
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.3.3 "
42
+ //! version = "1.3.4 "
43
43
//! features = [
44
44
//! "v4", # Lets you generate random UUIDs
45
45
//! "fast-rng", # Use a faster (but still sufficiently random) RNG
138
138
//!
139
139
//! ```toml
140
140
//! [dependencies.uuid]
141
- //! version = "1.3.3 "
141
+ //! version = "1.3.4 "
142
142
//! features = [
143
143
//! "v4",
144
144
//! "v7",
153
153
//!
154
154
//! ```toml
155
155
//! [dependencies.uuid]
156
- //! version = "1.3.3 "
156
+ //! version = "1.3.4 "
157
157
//! default-features = false
158
158
//! ```
159
159
//!
211
211
#![ doc(
212
212
html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
213
213
html_favicon_url = "https://www.rust-lang.org/favicon.ico" ,
214
- html_root_url = "https://docs.rs/uuid/1.3.3 "
214
+ html_root_url = "https://docs.rs/uuid/1.3.4 "
215
215
) ]
216
216
217
217
#[ cfg( any( feature = "std" , test) ) ]
You can’t perform that action at this time.
0 commit comments