Skip to content

Commit cd5f96a

Browse files
paolobarbolinijebrosen
authored andcommitted
Update 'uuid', 'unicode-xid', and 'base64' dependencies.
1 parent 121210c commit cd5f96a

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

contrib/lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ glob = { version = "0.3", optional = true }
5757
tera = { version = "0.11", optional = true }
5858

5959
# UUID dependencies.
60-
uuid = { version = "0.7", optional = true }
60+
uuid = { version = ">=0.7.0, <0.9.0", optional = true }
6161

6262
# Database dependencies
6363
diesel = { version = "1.0", default-features = false, optional = true }

contrib/lib/src/uuid.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ use std::ops::Deref;
2323
use rocket::request::{FromParam, FromFormValue};
2424
use rocket::http::RawStr;
2525

26-
pub use self::uuid_crate::parser::ParseError;
26+
type ParseError = <self::uuid_crate::Uuid as FromStr>::Err;
2727

2828
/// Implements [`FromParam`] and [`FromFormValue`] for accepting UUID values.
2929
///

core/http/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ rustls = { version = "0.15", optional = true }
2929
state = "0.4"
3030
cookie = { version = "0.12", features = ["percent-encode"] }
3131
pear = "0.1"
32-
unicode-xid = "0.1"
32+
unicode-xid = "0.2"
3333

3434
[dependencies.hyper-sync-rustls]
3535
version = "=0.3.0-rc.5"

core/lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ num_cpus = "1.0"
3333
state = "0.4.1"
3434
time = "0.1"
3535
memchr = "2" # TODO: Use pear instead.
36-
base64 = "0.10"
36+
base64 = "0.11"
3737
base16 = "0.2"
3838
pear = "0.1"
3939
atty = "0.2"

examples/uuid/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ publish = false
88
[dependencies]
99
rocket = { path = "../../core/lib" }
1010
lazy_static = "1.0"
11-
uuid = "0.7"
11+
uuid = "0.8"
1212

1313
[dependencies.rocket_contrib]
1414
default-features = false

0 commit comments

Comments
 (0)