diff --git a/Cargo.lock b/Cargo.lock index 97ba646..97d2f28 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -129,7 +129,7 @@ dependencies = [ "tracing", "tracing-subscriber", "url", - "uuid 0.8.2", + "uuid 1.1.2", ] [[package]] @@ -411,7 +411,7 @@ dependencies = [ "tokio", "tracing", "tracing-subscriber", - "uuid 0.8.2", + "uuid 1.1.2", ] [[package]] @@ -698,7 +698,7 @@ dependencies = [ "tokio-tungstenite", "tracing", "tracing-subscriber", - "uuid 0.8.2", + "uuid 1.1.2", ] [[package]] @@ -727,7 +727,7 @@ dependencies = [ "tokio-tungstenite", "tracing", "url", - "uuid 0.8.2", + "uuid 1.1.2", ] [[package]] @@ -959,7 +959,7 @@ dependencies = [ "tokio", "tracing", "tracing-subscriber", - "uuid 0.8.2", + "uuid 1.1.2", ] [[package]] @@ -3509,7 +3509,7 @@ dependencies = [ "tokio", "tracing", "tracing-subscriber", - "uuid 0.8.2", + "uuid 1.1.2", ] [[package]] @@ -3641,7 +3641,7 @@ dependencies = [ "tokio-reactor-trait", "tracing", "tracing-subscriber", - "uuid 0.8.2", + "uuid 1.1.2", ] [[package]] diff --git a/api/Cargo.toml b/api/Cargo.toml index 5128d8f..f820632 100644 --- a/api/Cargo.toml +++ b/api/Cargo.toml @@ -24,7 +24,7 @@ mongodb = { version = "2.3.1", features = ["bson-uuid-0_8"], default-fea # Dependencies for bin `fake-data` rand = { version = "0.8.5", optional = true } -uuid = { version = "0.8.2", optional = true } +uuid = { version = "1.1.2", optional = true } fake = { version = "2.5.0", optional = true, features = ["uuid"] } # Dependencies for client diff --git a/coordinator/Cargo.toml b/coordinator/Cargo.toml index 244097c..cd888bf 100644 --- a/coordinator/Cargo.toml +++ b/coordinator/Cargo.toml @@ -21,7 +21,7 @@ tokio = { version = "1.24", features = ["rt", "rt-multi-thread", "parking_lot", tokio-tungstenite = "0.18" tracing = "0.1" tracing-subscriber = "0.3" -uuid = "0.8" +uuid = "1.1" [dev-dependencies] educe = "0.4" diff --git a/core/Cargo.toml b/core/Cargo.toml index 0b501c2..84bdb74 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -31,7 +31,7 @@ tokio-stream = { version = "0.1", features = ["sync"], optional = true } tokio-tungstenite = "0.18" tracing = "0.1" url = { version = "2.3.1", features = ["serde"] } -uuid = "0.8" +uuid = "1.1" [dev-dependencies] core_derive = { path = "../core_derive" } diff --git a/middlewares/delay/Cargo.toml b/middlewares/delay/Cargo.toml index ec9c1f7..f5f2b8b 100644 --- a/middlewares/delay/Cargo.toml +++ b/middlewares/delay/Cargo.toml @@ -28,4 +28,4 @@ rand = "0.8" rstest = "0.16" sg-core = { package = "core", path = "../../core", features = ["mq", "mock"] } tempfile = "3.3" -uuid = "0.8" +uuid = "1.1" diff --git a/middlewares/translate/Cargo.toml b/middlewares/translate/Cargo.toml index 128d47d..04001fa 100644 --- a/middlewares/translate/Cargo.toml +++ b/middlewares/translate/Cargo.toml @@ -20,7 +20,7 @@ sg-core = { package = "core", path = "../../core", features = ["mq", "config"] } tokio = { version = "1.24", features = ["rt", "rt-multi-thread", "parking_lot", "time", "net", "macros"] } tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } -uuid = "0.8" +uuid = "1.1" [dev-dependencies] assert_cmd = "2.0" diff --git a/workers/bililive/Cargo.toml b/workers/bililive/Cargo.toml index 4c1454e..210a8e4 100644 --- a/workers/bililive/Cargo.toml +++ b/workers/bililive/Cargo.toml @@ -21,4 +21,4 @@ tarpc = { version = "0.29", features = ["serde1", "tokio1"] } tokio = { version = "1.24", features = ["rt", "rt-multi-thread", "parking_lot", "time", "net", "macros"] } tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } -uuid = "0.8" +uuid = "1.1" diff --git a/workers/twitter/Cargo.toml b/workers/twitter/Cargo.toml index 890e3c1..2d9070a 100644 --- a/workers/twitter/Cargo.toml +++ b/workers/twitter/Cargo.toml @@ -25,7 +25,7 @@ tokio-executor-trait = "2.1" tokio-reactor-trait = "1.1" tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } -uuid = "0.8" +uuid = "1.1" [dev-dependencies] figment = { version = "0.10", features = ["test"] }