From 4a72e6b2038ee0fc1486bb66f0754fdfae0a97c3 Mon Sep 17 00:00:00 2001 From: Luca Palmieri <20745048+LukeMathWalker@users.noreply.github.com> Date: Mon, 25 Nov 2024 10:40:51 +0100 Subject: [PATCH] chore: Update workspace-hack crate --- libs/Cargo.lock | 6 ++++-- libs/px_workspace_hack/Cargo.toml | 16 ++++++++++------ 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/libs/Cargo.lock b/libs/Cargo.lock index 7e0ceeb6f..e2c444324 100644 --- a/libs/Cargo.lock +++ b/libs/Cargo.lock @@ -2924,6 +2924,7 @@ dependencies = [ "digest", "either", "fixedbitset", + "form_urlencoded", "futures-channel", "futures-core", "futures-io", @@ -2932,11 +2933,13 @@ dependencies = [ "getrandom", "hashbrown 0.14.5", "hmac", + "idna", "indexmap", "log", "memchr", "miette", "num-traits", + "percent-encoding", "petgraph", "proc-macro2", "quote", @@ -2954,6 +2957,7 @@ dependencies = [ "sqlx-macros", "sqlx-macros-core", "sqlx-postgres", + "stable_deref_trait", "subtle", "syn", "time", @@ -2964,8 +2968,6 @@ dependencies = [ "tracing", "tracing-core", "tracing-log", - "unicode-bidi", - "unicode-normalization", "url", "uuid", "zerocopy", diff --git a/libs/px_workspace_hack/Cargo.toml b/libs/px_workspace_hack/Cargo.toml index f64b15764..0e9c94d7f 100644 --- a/libs/px_workspace_hack/Cargo.toml +++ b/libs/px_workspace_hack/Cargo.toml @@ -31,6 +31,7 @@ deranged = { version = "0.3", default-features = false, features = ["powerfmt", digest = { version = "0.10", features = ["mac", "std"] } either = { version = "1", features = ["serde"] } fixedbitset = { version = "0.4" } +form_urlencoded = { version = "1" } futures-channel = { version = "0.3", features = ["sink"] } futures-core = { version = "0.3" } futures-io = { version = "0.3" } @@ -39,11 +40,13 @@ futures-util = { version = "0.3", features = ["channel", "io", "sink"] } getrandom = { version = "0.2", default-features = false, features = ["std"] } hashbrown = { version = "0.14" } hmac = { version = "0.12", default-features = false, features = ["reset"] } +idna = { version = "1", default-features = false, features = ["compiled_data", "std"] } indexmap = { version = "2", features = ["serde"] } log = { version = "0.4", default-features = false, features = ["std"] } memchr = { version = "2" } miette = { version = "7", features = ["fancy"] } num-traits = { version = "0.2", features = ["i128"] } +percent-encoding = { version = "2" } petgraph = { version = "0.6", default-features = false, features = ["graphmap", "stable_graph"] } proc-macro2 = { version = "1", features = ["span-locations"] } quote = { version = "1" } @@ -59,8 +62,9 @@ smallvec = { version = "1", default-features = false, features = ["const_new", " sqlx = { version = "0.8", features = ["postgres", "time", "uuid"] } sqlx-core = { version = "0.8", features = ["any", "json", "migrate", "offline", "time", "uuid"] } sqlx-postgres = { version = "0.8", default-features = false, features = ["any", "json", "migrate", "offline", "time", "uuid"] } +stable_deref_trait = { version = "1" } subtle = { version = "2" } -syn = { version = "2", features = ["extra-traits", "full", "visit", "visit-mut"] } +syn = { version = "2", features = ["extra-traits", "fold", "full", "visit", "visit-mut"] } time = { version = "0.3", features = ["formatting", "local-offset", "macros", "parsing", "serde"] } tokio = { version = "1", features = ["fs", "io-util", "macros", "net", "rt", "sync", "time"] } toml = { version = "0.8", features = ["preserve_order"] } @@ -68,8 +72,6 @@ toml_edit = { version = "0.22", features = ["serde"] } tracing = { version = "0.1", features = ["log"] } tracing-core = { version = "0.1" } tracing-log = { version = "0.2" } -unicode-bidi = { version = "0.3" } -unicode-normalization = { version = "0.1" } url = { version = "2" } uuid = { version = "1", features = ["fast-rng", "serde", "v4", "v7"] } zerocopy = { version = "0.7", features = ["derive", "simd"] } @@ -91,6 +93,7 @@ deranged = { version = "0.3", default-features = false, features = ["powerfmt", digest = { version = "0.10", features = ["mac", "std"] } either = { version = "1", features = ["serde"] } fixedbitset = { version = "0.4" } +form_urlencoded = { version = "1" } futures-channel = { version = "0.3", features = ["sink"] } futures-core = { version = "0.3" } futures-io = { version = "0.3" } @@ -99,11 +102,13 @@ futures-util = { version = "0.3", features = ["channel", "io", "sink"] } getrandom = { version = "0.2", default-features = false, features = ["std"] } hashbrown = { version = "0.14" } hmac = { version = "0.12", default-features = false, features = ["reset"] } +idna = { version = "1", default-features = false, features = ["compiled_data", "std"] } indexmap = { version = "2", features = ["serde"] } log = { version = "0.4", default-features = false, features = ["std"] } memchr = { version = "2" } miette = { version = "7", features = ["fancy"] } num-traits = { version = "0.2", features = ["i128"] } +percent-encoding = { version = "2" } petgraph = { version = "0.6", default-features = false, features = ["graphmap", "stable_graph"] } proc-macro2 = { version = "1", features = ["span-locations"] } quote = { version = "1" } @@ -121,8 +126,9 @@ sqlx-core = { version = "0.8", features = ["any", "json", "migrate", "offline", sqlx-macros = { version = "0.8", features = ["derive", "json", "macros", "migrate", "postgres", "time", "uuid"] } sqlx-macros-core = { version = "0.8", features = ["derive", "json", "macros", "migrate", "postgres", "time", "uuid"] } sqlx-postgres = { version = "0.8", default-features = false, features = ["any", "json", "migrate", "offline", "time", "uuid"] } +stable_deref_trait = { version = "1" } subtle = { version = "2" } -syn = { version = "2", features = ["extra-traits", "full", "visit", "visit-mut"] } +syn = { version = "2", features = ["extra-traits", "fold", "full", "visit", "visit-mut"] } time = { version = "0.3", features = ["formatting", "local-offset", "macros", "parsing", "serde"] } time-macros = { version = "0.2", default-features = false, features = ["formatting", "parsing", "serde"] } tokio = { version = "1", features = ["fs", "io-util", "macros", "net", "rt", "sync", "time"] } @@ -131,8 +137,6 @@ toml_edit = { version = "0.22", features = ["serde"] } tracing = { version = "0.1", features = ["log"] } tracing-core = { version = "0.1" } tracing-log = { version = "0.2" } -unicode-bidi = { version = "0.3" } -unicode-normalization = { version = "0.1" } url = { version = "2" } uuid = { version = "1", features = ["fast-rng", "serde", "v4", "v7"] } zerocopy = { version = "0.7", features = ["derive", "simd"] }