File tree 5 files changed +12
-12
lines changed
5 files changed +12
-12
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.12.1 " # remember to update html_root_url in lib.rs
32
+ version = " 1.13.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 ]
@@ -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.12.1 "
138
+ version = " 1.13.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.12.1 "
161
+ version = " 1.13.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.12.1 "
31
+ version = " 1.13.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.12.1 /uuid ) .
68
+ For more details on using ` uuid ` , [ see the library documentation] ( https://docs.rs/uuid/1.13.0 /uuid ) .
69
69
70
70
## References
71
71
72
- * [ ` uuid ` library docs] ( https://docs.rs/uuid/1.12.1 /uuid ) .
72
+ * [ ` uuid ` library docs] ( https://docs.rs/uuid/1.13.0 /uuid ) .
73
73
* [ Wikipedia: Universally Unique Identifier] ( http://en.wikipedia.org/wiki/Universally_unique_identifier ) .
74
74
* [ RFC 9562: Universally Unique IDentifiers (UUID)] ( https://www.ietf.org/rfc/rfc9562.html ) .
75
75
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " uuid-macro-internal"
3
- version = " 1.12.1 "
3
+ version = " 1.13.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.12.1 "
3
+ version = " 1.13.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.12.1 "
41
+ //! version = "1.13.0 "
42
42
//! features = [
43
43
//! "v4", # Lets you generate random UUIDs
44
44
//! "fast-rng", # Use a faster (but still sufficiently random) RNG
138
138
//!
139
139
//! ```toml
140
140
//! [dependencies.uuid]
141
- //! version = "1.12.1 "
141
+ //! version = "1.13.0 "
142
142
//! features = [
143
143
//! "v4",
144
144
//! "v7",
153
153
//!
154
154
//! ```toml
155
155
//! [dependencies.uuid]
156
- //! version = "1.12.1 "
156
+ //! version = "1.13.0 "
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.12.1 "
214
+ html_root_url = "https://docs.rs/uuid/1.13.0 "
215
215
) ]
216
216
217
217
#[ cfg( any( feature = "std" , test) ) ]
You can’t perform that action at this time.
0 commit comments