From 7de61879a58c9ed306ee522c28dbe8dbfaa1fadc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 27 Jul 2024 20:52:18 +0200 Subject: [PATCH] Re-enable workspace hack after a release (#328) Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action Co-authored-by: pavex-releaser[bot] --- libs/Cargo.lock | 61 +++++++++++++++++++ libs/generate_from_path/Cargo.toml | 1 + libs/pavex/Cargo.toml | 1 + libs/pavex_bp_schema/Cargo.toml | 1 + libs/pavex_cli/Cargo.toml | 1 + libs/pavex_cli_client/Cargo.toml | 1 + libs/pavex_macros/Cargo.toml | 1 + libs/pavex_miette/Cargo.toml | 1 + libs/pavex_reflection/Cargo.toml | 1 + libs/pavex_test_runner/Cargo.toml | 1 + libs/pavex_tracing/Cargo.toml | 1 + libs/pavexc/Cargo.toml | 1 + libs/pavexc_cli/Cargo.toml | 1 + libs/pavexc_cli_client/Cargo.toml | 1 + libs/persist_if_changed/Cargo.toml | 1 + libs/px_workspace_hack/Cargo.toml | 94 +++++++++++++++++++++++++++++- 16 files changed, 166 insertions(+), 3 deletions(-) diff --git a/libs/Cargo.lock b/libs/Cargo.lock index 3d1c1878..782d70e1 100644 --- a/libs/Cargo.lock +++ b/libs/Cargo.lock @@ -1000,6 +1000,7 @@ dependencies = [ "liquid", "liquid-core", "path-absolutize", + "px_workspace_hack", "regex", "sanitize-filename", "tempfile", @@ -1998,6 +1999,7 @@ dependencies = [ "percent-encoding", "persist_if_changed", "pin-project-lite", + "px_workspace_hack", "reqwest", "ron", "serde", @@ -2020,6 +2022,7 @@ name = "pavex_bp_schema" version = "0.1.46" dependencies = [ "pavex_reflection", + "px_workspace_hack", "serde", ] @@ -2046,6 +2049,7 @@ dependencies = [ "pavexc", "pavexc_cli_client", "pem", + "px_workspace_hack", "redact", "remove_dir_all", "reqwest", @@ -2082,6 +2086,7 @@ version = "0.1.46" dependencies = [ "anyhow", "pavex", + "px_workspace_hack", "thiserror", ] @@ -2091,6 +2096,7 @@ version = "0.1.46" dependencies = [ "pavex", "proc-macro2", + "px_workspace_hack", "quote", "serde", "syn", @@ -2109,6 +2115,7 @@ version = "0.1.46" dependencies = [ "miette", "owo-colors", + "px_workspace_hack", "supports-color", "supports-hyperlinks", "supports-unicode", @@ -2121,6 +2128,7 @@ dependencies = [ name = "pavex_reflection" version = "0.1.46" dependencies = [ + "px_workspace_hack", "serde", ] @@ -2140,6 +2148,7 @@ dependencies = [ "object-pool", "once_cell", "persist_if_changed", + "px_workspace_hack", "regex", "serde", "serde_json", @@ -2156,6 +2165,7 @@ name = "pavex_tracing" version = "0.1.46" dependencies = [ "pavex", + "px_workspace_hack", "tracing", ] @@ -2186,6 +2196,7 @@ dependencies = [ "petgraph", "prettyplease", "proc-macro2", + "px_workspace_hack", "quote", "r2d2", "r2d2_sqlite", @@ -2224,6 +2235,7 @@ dependencies = [ "pavex_miette", "pavexc", "pavexc_cli_client", + "px_workspace_hack", "ron", "supports-color", "tempfile", @@ -2239,6 +2251,7 @@ version = "0.1.46" dependencies = [ "anyhow", "pavex", + "px_workspace_hack", "thiserror", ] @@ -2274,6 +2287,7 @@ version = "0.1.46" dependencies = [ "anyhow", "fs-err", + "px_workspace_hack", "sha2", "tracing", ] @@ -2432,6 +2446,53 @@ dependencies = [ [[package]] name = "px_workspace_hack" version = "0.1.0" +dependencies = [ + "ahash", + "aho-corasick", + "bitflags 2.6.0", + "cc", + "clap", + "clap_builder", + "console", + "crossbeam-utils", + "crypto-common", + "deranged", + "digest", + "fixedbitset", + "futures-channel", + "futures-core", + "futures-sink", + "futures-util", + "getrandom", + "hashbrown 0.14.5", + "hmac", + "indexmap", + "log", + "miette", + "num-traits", + "petgraph", + "proc-macro2", + "quote", + "regex", + "regex-automata 0.4.7", + "regex-syntax 0.8.4", + "reqwest", + "serde", + "serde_json", + "sha2", + "smallvec", + "subtle", + "syn", + "time", + "time-macros", + "tokio", + "toml", + "toml_edit", + "tracing", + "tracing-core", + "uuid", + "zeroize", +] [[package]] name = "quinn" diff --git a/libs/generate_from_path/Cargo.toml b/libs/generate_from_path/Cargo.toml index d7468539..6a56e436 100644 --- a/libs/generate_from_path/Cargo.toml +++ b/libs/generate_from_path/Cargo.toml @@ -20,3 +20,4 @@ indicatif = { workspace = true } walkdir = { workspace = true } sanitize-filename = { workspace = true } regex = { workspace = true } +px_workspace_hack = { version = "0.1", path = "../px_workspace_hack" } diff --git a/libs/pavex/Cargo.toml b/libs/pavex/Cargo.toml index a4e1f9d0..5f9f7520 100644 --- a/libs/pavex/Cargo.toml +++ b/libs/pavex/Cargo.toml @@ -70,6 +70,7 @@ hyper = { workspace = true, features = ["full"], optional = true } hyper-util = { workspace = true, features = ["tokio", "server", "server-auto"], optional = true } socket2 = { workspace = true, optional = true } smallvec = { workspace = true } +px_workspace_hack = { version = "0.1", path = "../px_workspace_hack" } [dev-dependencies] tokio = { workspace = true, features = ["macros"] } diff --git a/libs/pavex_bp_schema/Cargo.toml b/libs/pavex_bp_schema/Cargo.toml index b9196ee4..f5e71c9e 100644 --- a/libs/pavex_bp_schema/Cargo.toml +++ b/libs/pavex_bp_schema/Cargo.toml @@ -10,3 +10,4 @@ license.workspace = true [dependencies] serde = { workspace = true, features = ["derive"] } pavex_reflection = { path = "../pavex_reflection", version = "=0.1.46" } +px_workspace_hack = { version = "0.1", path = "../px_workspace_hack" } diff --git a/libs/pavex_cli/Cargo.toml b/libs/pavex_cli/Cargo.toml index 1a78d67c..a64b3070 100644 --- a/libs/pavex_cli/Cargo.toml +++ b/libs/pavex_cli/Cargo.toml @@ -63,6 +63,7 @@ jsonwebtoken = { workspace = true } ring = { workspace = true } pem = { workspace = true } time = { workspace = true } +px_workspace_hack = { version = "0.1", path = "../px_workspace_hack" } [dev-dependencies] pavex_test_runner = { path = "../pavex_test_runner" } diff --git a/libs/pavex_cli_client/Cargo.toml b/libs/pavex_cli_client/Cargo.toml index 4b7a35ed..1daae3bd 100644 --- a/libs/pavex_cli_client/Cargo.toml +++ b/libs/pavex_cli_client/Cargo.toml @@ -11,3 +11,4 @@ license.workspace = true anyhow = { workspace = true } pavex = { path = "../pavex", version = "0.1.46" } thiserror = { workspace = true } +px_workspace_hack = { version = "0.1", path = "../px_workspace_hack" } diff --git a/libs/pavex_macros/Cargo.toml b/libs/pavex_macros/Cargo.toml index 72b80376..d8b65938 100644 --- a/libs/pavex_macros/Cargo.toml +++ b/libs/pavex_macros/Cargo.toml @@ -14,6 +14,7 @@ proc-macro = true proc-macro2 = { workspace = true } quote = { workspace = true } syn = { workspace = true } +px_workspace_hack = { version = "0.1", path = "../px_workspace_hack" } [dev-dependencies] trybuild = { workspace = true } diff --git a/libs/pavex_miette/Cargo.toml b/libs/pavex_miette/Cargo.toml index 72d35f0f..81843e0f 100644 --- a/libs/pavex_miette/Cargo.toml +++ b/libs/pavex_miette/Cargo.toml @@ -16,3 +16,4 @@ supports-hyperlinks = { workspace = true } supports-color = { workspace = true } supports-unicode = { workspace = true } terminal_size = { workspace = true } +px_workspace_hack = { version = "0.1", path = "../px_workspace_hack" } diff --git a/libs/pavex_reflection/Cargo.toml b/libs/pavex_reflection/Cargo.toml index 13b3cac7..4c141f3a 100644 --- a/libs/pavex_reflection/Cargo.toml +++ b/libs/pavex_reflection/Cargo.toml @@ -9,3 +9,4 @@ license.workspace = true [dependencies] serde = { workspace = true, features = ["derive"] } +px_workspace_hack = { version = "0.1", path = "../px_workspace_hack" } diff --git a/libs/pavex_test_runner/Cargo.toml b/libs/pavex_test_runner/Cargo.toml index 402b7591..e79a23b8 100644 --- a/libs/pavex_test_runner/Cargo.toml +++ b/libs/pavex_test_runner/Cargo.toml @@ -37,3 +37,4 @@ globwalk = { workspace = true } tracing-subscriber = { workspace = true, features = ["env-filter", "fmt"] } regex = { workspace = true } once_cell = { workspace = true } +px_workspace_hack = { version = "0.1", path = "../px_workspace_hack" } diff --git a/libs/pavex_tracing/Cargo.toml b/libs/pavex_tracing/Cargo.toml index c540d28b..1d235f44 100644 --- a/libs/pavex_tracing/Cargo.toml +++ b/libs/pavex_tracing/Cargo.toml @@ -12,3 +12,4 @@ readme = "README.md" [dependencies] tracing = { workspace = true, features = ["std"] } pavex = { version = "0.1.46", path = "../pavex" } +px_workspace_hack = { version = "0.1", path = "../px_workspace_hack" } diff --git a/libs/pavexc/Cargo.toml b/libs/pavexc/Cargo.toml index eddfb5b9..9316ebd3 100644 --- a/libs/pavexc/Cargo.toml +++ b/libs/pavexc/Cargo.toml @@ -60,3 +60,4 @@ r2d2 = { workspace = true } bincode = { workspace = true } rayon = { workspace = true } num_cpus = { workspace = true } +px_workspace_hack = { version = "0.1", path = "../px_workspace_hack" } diff --git a/libs/pavexc_cli/Cargo.toml b/libs/pavexc_cli/Cargo.toml index 946939be..a096d2d1 100644 --- a/libs/pavexc_cli/Cargo.toml +++ b/libs/pavexc_cli/Cargo.toml @@ -33,6 +33,7 @@ ron = { workspace = true } generate_from_path = { path = "../generate_from_path", version = "0.1.46" } tempfile = { workspace = true } better-panic = { workspace = true } +px_workspace_hack = { version = "0.1", path = "../px_workspace_hack" } [build-dependencies] vergen = { workspace = true } diff --git a/libs/pavexc_cli_client/Cargo.toml b/libs/pavexc_cli_client/Cargo.toml index 34b1ad76..830a8a93 100644 --- a/libs/pavexc_cli_client/Cargo.toml +++ b/libs/pavexc_cli_client/Cargo.toml @@ -11,3 +11,4 @@ license.workspace = true anyhow = { workspace = true } pavex = { path = "../pavex", version = "0.1.46" } thiserror = { workspace = true } +px_workspace_hack = { version = "0.1", path = "../px_workspace_hack" } diff --git a/libs/persist_if_changed/Cargo.toml b/libs/persist_if_changed/Cargo.toml index 35503ac6..157c33a6 100644 --- a/libs/persist_if_changed/Cargo.toml +++ b/libs/persist_if_changed/Cargo.toml @@ -12,3 +12,4 @@ tracing = { workspace = true, default-features = true } fs-err = { workspace = true } sha2 = { workspace = true } anyhow = { workspace = true } +px_workspace_hack = { version = "0.1", path = "../px_workspace_hack" } diff --git a/libs/px_workspace_hack/Cargo.toml b/libs/px_workspace_hack/Cargo.toml index ad354e0e..957e72f2 100644 --- a/libs/px_workspace_hack/Cargo.toml +++ b/libs/px_workspace_hack/Cargo.toml @@ -16,8 +16,96 @@ license.workspace = true # are managed by hakari. ### BEGIN HAKARI SECTION +[dependencies] +ahash = { version = "0.8" } +aho-corasick = { version = "1" } +bitflags = { version = "2", default-features = false, features = ["serde"] } +clap = { version = "4", features = ["derive", "env"] } +clap_builder = { version = "4", default-features = false, features = ["color", "env", "help", "std", "suggestions", "usage"] } +console = { version = "0.15" } +crossbeam-utils = { version = "0.8" } +crypto-common = { version = "0.1", default-features = false, features = ["getrandom", "std"] } +deranged = { version = "0.3", default-features = false, features = ["powerfmt", "serde", "std"] } +digest = { version = "0.10", features = ["mac", "std"] } +fixedbitset = { version = "0.4" } +futures-channel = { version = "0.3", features = ["sink"] } +futures-core = { version = "0.3" } +futures-sink = { version = "0.3" } +futures-util = { version = "0.3", features = ["channel", "io", "sink"] } +getrandom = { version = "0.2", default-features = false, features = ["std"] } +hashbrown = { version = "0.14", default-features = false, features = ["ahash", "inline-more", "raw"] } +hmac = { version = "0.12", default-features = false, features = ["reset"] } +indexmap = { version = "2", features = ["serde"] } +log = { version = "0.4", default-features = false, features = ["std"] } +miette = { version = "7", features = ["fancy"] } +num-traits = { version = "0.2", features = ["i128"] } +petgraph = { version = "0.6", default-features = false, features = ["graphmap", "stable_graph"] } +proc-macro2 = { version = "1", features = ["span-locations"] } +quote = { version = "1" } +regex = { version = "1" } +regex-automata = { version = "0.4", default-features = false, features = ["dfa-onepass", "hybrid", "meta", "nfa", "perf", "unicode"] } +regex-syntax = { version = "0.8" } +reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] } +serde = { version = "1", features = ["alloc", "derive"] } +serde_json = { version = "1", features = ["unbounded_depth"] } +sha2 = { version = "0.10" } +smallvec = { version = "1", default-features = false, features = ["const_new"] } +subtle = { version = "2" } +syn = { version = "2", features = ["extra-traits", "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"] } +toml_edit = { version = "0.22", features = ["serde"] } +tracing = { version = "0.1" } +tracing-core = { version = "0.1" } +uuid = { version = "1", features = ["fast-rng", "v4", "v7"] } +zeroize = { version = "1", features = ["zeroize_derive"] } + +[build-dependencies] +ahash = { version = "0.8" } +aho-corasick = { version = "1" } +bitflags = { version = "2", default-features = false, features = ["serde"] } +cc = { version = "1", default-features = false, features = ["parallel"] } +clap = { version = "4", features = ["derive", "env"] } +clap_builder = { version = "4", default-features = false, features = ["color", "env", "help", "std", "suggestions", "usage"] } +console = { version = "0.15" } +crossbeam-utils = { version = "0.8" } +crypto-common = { version = "0.1", default-features = false, features = ["getrandom", "std"] } +deranged = { version = "0.3", default-features = false, features = ["powerfmt", "serde", "std"] } +digest = { version = "0.10", features = ["mac", "std"] } +fixedbitset = { version = "0.4" } +futures-channel = { version = "0.3", features = ["sink"] } +futures-core = { version = "0.3" } +futures-sink = { version = "0.3" } +futures-util = { version = "0.3", features = ["channel", "io", "sink"] } +getrandom = { version = "0.2", default-features = false, features = ["std"] } +hashbrown = { version = "0.14", default-features = false, features = ["ahash", "inline-more", "raw"] } +hmac = { version = "0.12", default-features = false, features = ["reset"] } +indexmap = { version = "2", features = ["serde"] } +log = { version = "0.4", default-features = false, features = ["std"] } +miette = { version = "7", features = ["fancy"] } +num-traits = { version = "0.2", features = ["i128"] } +petgraph = { version = "0.6", default-features = false, features = ["graphmap", "stable_graph"] } +proc-macro2 = { version = "1", features = ["span-locations"] } +quote = { version = "1" } +regex = { version = "1" } +regex-automata = { version = "0.4", default-features = false, features = ["dfa-onepass", "hybrid", "meta", "nfa", "perf", "unicode"] } +regex-syntax = { version = "0.8" } +reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] } +serde = { version = "1", features = ["alloc", "derive"] } +serde_json = { version = "1", features = ["unbounded_depth"] } +sha2 = { version = "0.10" } +smallvec = { version = "1", default-features = false, features = ["const_new"] } +subtle = { version = "2" } +syn = { version = "2", features = ["extra-traits", "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"] } +toml = { version = "0.8", features = ["preserve_order"] } +toml_edit = { version = "0.22", features = ["serde"] } +tracing = { version = "0.1" } +tracing-core = { version = "0.1" } +uuid = { version = "1", features = ["fast-rng", "v4", "v7"] } +zeroize = { version = "1", features = ["zeroize_derive"] } -# Disabled by running `cargo hakari disable`. -# To re-enable, run: -# cargo hakari generate ### END HAKARI SECTION