diff --git a/axum/Cargo.toml b/axum/Cargo.toml index 10dee5d6..6f13e559 100644 --- a/axum/Cargo.toml +++ b/axum/Cargo.toml @@ -63,7 +63,7 @@ serde_json = "1.0" tokio = { version = "1.6.1", features = ["macros", "rt", "rt-multi-thread", "net", "test-util"] } tokio-stream = "0.1" tracing = "0.1" -uuid = { version = "0.8", features = ["serde", "v4"] } +uuid = { version = "1.0", features = ["serde", "v4"] } anyhow = "1.0" quickcheck = "1.0" quickcheck_macros = "1.0" diff --git a/examples/error-handling-and-dependency-injection/Cargo.toml b/examples/error-handling-and-dependency-injection/Cargo.toml index 0ad43b8a..84fb69f9 100644 --- a/examples/error-handling-and-dependency-injection/Cargo.toml +++ b/examples/error-handling-and-dependency-injection/Cargo.toml @@ -12,4 +12,4 @@ tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -uuid = { version = "0.8", features = ["v4", "serde"] } +uuid = { version = "1.0", features = ["v4", "serde"] } diff --git a/examples/sessions/Cargo.toml b/examples/sessions/Cargo.toml index caef8e11..b7831db3 100644 --- a/examples/sessions/Cargo.toml +++ b/examples/sessions/Cargo.toml @@ -10,5 +10,5 @@ tokio = { version = "1.0", features = ["full"] } tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } serde = { version = "1.0", features = ["derive"] } -uuid = { version = "0.8", features = ["v4", "serde"] } +uuid = { version = "1.0", features = ["v4", "serde"] } async-session = "3.0.0" diff --git a/examples/todos/Cargo.toml b/examples/todos/Cargo.toml index debc10a9..c1ba73cb 100644 --- a/examples/todos/Cargo.toml +++ b/examples/todos/Cargo.toml @@ -11,5 +11,5 @@ tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } tower = { version = "0.4", features = ["util", "timeout"] } tower-http = { version = "0.3.0", features = ["add-extension", "trace"] } -uuid = { version = "0.8", features = ["serde", "v4"] } +uuid = { version = "1.0", features = ["serde", "v4"] } serde = { version = "1.0", features = ["derive"] }