diff --git a/libs/Cargo.lock b/libs/Cargo.lock index 3be82856a..244dbceed 100644 --- a/libs/Cargo.lock +++ b/libs/Cargo.lock @@ -916,7 +916,7 @@ dependencies = [ [[package]] name = "generate_from_path" -version = "0.1.25" +version = "0.1.26" dependencies = [ "anyhow", "fs-err", @@ -1894,7 +1894,7 @@ dependencies = [ [[package]] name = "pavex" -version = "0.1.25" +version = "0.1.26" dependencies = [ "anyhow", "biscotti", @@ -1937,7 +1937,7 @@ dependencies = [ [[package]] name = "pavex_bp_schema" -version = "0.1.25" +version = "0.1.26" dependencies = [ "pavex_reflection", "serde", @@ -1945,7 +1945,7 @@ dependencies = [ [[package]] name = "pavex_cli" -version = "0.1.25" +version = "0.1.26" dependencies = [ "anyhow", "bytes", @@ -1988,7 +1988,7 @@ dependencies = [ [[package]] name = "pavex_cli_client" -version = "0.1.25" +version = "0.1.26" dependencies = [ "anyhow", "pavex", @@ -1997,7 +1997,7 @@ dependencies = [ [[package]] name = "pavex_macros" -version = "0.1.25" +version = "0.1.26" dependencies = [ "pavex", "proc-macro2", @@ -2015,7 +2015,7 @@ checksum = "77b9753b03381fd8856966146c4d626d9a8507901c1bcdfbc41df03deea551fc" [[package]] name = "pavex_miette" -version = "0.1.25" +version = "0.1.26" dependencies = [ "miette", "owo-colors 3.5.0", @@ -2029,14 +2029,14 @@ dependencies = [ [[package]] name = "pavex_reflection" -version = "0.1.25" +version = "0.1.26" dependencies = [ "serde", ] [[package]] name = "pavex_test_runner" -version = "0.1.25" +version = "0.1.26" dependencies = [ "ahash", "anyhow", @@ -2063,7 +2063,7 @@ dependencies = [ [[package]] name = "pavex_tracing" -version = "0.1.25" +version = "0.1.26" dependencies = [ "pavex", "tracing", @@ -2071,7 +2071,7 @@ dependencies = [ [[package]] name = "pavexc" -version = "0.1.25" +version = "0.1.26" dependencies = [ "ahash", "anyhow", @@ -2118,7 +2118,7 @@ dependencies = [ [[package]] name = "pavexc_cli" -version = "0.1.25" +version = "0.1.26" dependencies = [ "anyhow", "better-panic", @@ -2143,7 +2143,7 @@ dependencies = [ [[package]] name = "pavexc_cli_client" -version = "0.1.25" +version = "0.1.26" dependencies = [ "anyhow", "pavex", @@ -2170,7 +2170,7 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" [[package]] name = "persist_if_changed" -version = "0.1.25" +version = "0.1.26" dependencies = [ "anyhow", "fs-err", diff --git a/libs/generate_from_path/Cargo.toml b/libs/generate_from_path/Cargo.toml index bc3cfa6d4..eeff36aaf 100644 --- a/libs/generate_from_path/Cargo.toml +++ b/libs/generate_from_path/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "generate_from_path" -version = "0.1.25" +version = "0.1.26" edition.workspace = true repository.workspace = true description = "Generate a Rust project from a local Liquid template. A stripped-down version of cargo-generate." diff --git a/libs/pavex/Cargo.toml b/libs/pavex/Cargo.toml index bfcf2dd73..18b42f307 100644 --- a/libs/pavex/Cargo.toml +++ b/libs/pavex/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pavex" -version = "0.1.25" +version = "0.1.26" description = "A framework for building API services and web applications in Rust." categories = ["asynchronous", "network-programming", "web-programming::http-server"] keywords = ["http", "web", "framework", "pavex", "rest"] @@ -26,15 +26,15 @@ futures-util = "0.3" mime = "0.3" thiserror = "1" serde = { version = "1", features = ["derive"] } -pavex_macros = { path = "../pavex_macros", version = "0.1.25" } +pavex_macros = { path = "../pavex_macros", version = "0.1.26" } paste = "1" tracing = "0.1" http-body-util = "0.1" pin-project-lite = "0.2" ubyte = { version = "0.10.4", features = ["serde"] } -pavex_bp_schema = { path = "../pavex_bp_schema", version = "=0.1.25" } -pavex_reflection = { path = "../pavex_reflection", version = "=0.1.25" } -persist_if_changed = { path = "../persist_if_changed", version = "0.1.25" } +pavex_bp_schema = { path = "../pavex_bp_schema", version = "=0.1.26" } +pavex_reflection = { path = "../pavex_reflection", version = "=0.1.26" } +persist_if_changed = { path = "../persist_if_changed", version = "0.1.26" } # Route parameters matchit = { version = "0.7", package = "pavex_matchit" } diff --git a/libs/pavex_bp_schema/Cargo.toml b/libs/pavex_bp_schema/Cargo.toml index 5b3d399e3..b128b5539 100644 --- a/libs/pavex_bp_schema/Cargo.toml +++ b/libs/pavex_bp_schema/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pavex_bp_schema" -version = "0.1.25" +version = "0.1.26" description = "The schema used to (de)serialize a Pavex Blueprint" keywords = ["pavex"] edition.workspace = true @@ -9,4 +9,4 @@ license.workspace = true [dependencies] serde = { version = "1", features = ["derive"] } -pavex_reflection = { path = "../pavex_reflection", version = "=0.1.25" } +pavex_reflection = { path = "../pavex_reflection", version = "=0.1.26" } diff --git a/libs/pavex_cli/Cargo.toml b/libs/pavex_cli/Cargo.toml index 9d3e38fc4..d0e755a91 100644 --- a/libs/pavex_cli/Cargo.toml +++ b/libs/pavex_cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pavex_cli" -version = "0.1.25" +version = "0.1.26" description = "The companion CLI for Pavex, a Rust framework to build API services and web applications." keywords = ["pavex"] edition.workspace = true @@ -19,9 +19,9 @@ harness = false vergen = { workspace = true } [dependencies] -pavexc_cli_client = { path = "../pavexc_cli_client", version = "0.1.25" } +pavexc_cli_client = { path = "../pavexc_cli_client", version = "0.1.26" } clap = { version = "4", features = ["derive", "env"] } -pavex_miette = { path = "../pavex_miette", version = "0.1.25" } +pavex_miette = { path = "../pavex_miette", version = "0.1.26" } miette = { version = "6.0.1" } fs-err = "2.7.0" tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] } diff --git a/libs/pavex_cli_client/Cargo.toml b/libs/pavex_cli_client/Cargo.toml index ff2dceb47..1e2a17ca9 100644 --- a/libs/pavex_cli_client/Cargo.toml +++ b/libs/pavex_cli_client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pavex_cli_client" -version = "0.1.25" +version = "0.1.26" description = "A convenient Rust interface to execute Pavex CLI commands." keywords = ["pavex"] edition.workspace = true @@ -9,5 +9,5 @@ license.workspace = true [dependencies] anyhow = "1" -pavex = { path = "../pavex", version = "0.1.25" } +pavex = { path = "../pavex", version = "0.1.26" } thiserror = "1.0.56" diff --git a/libs/pavex_macros/Cargo.toml b/libs/pavex_macros/Cargo.toml index 7e1d92251..567806654 100644 --- a/libs/pavex_macros/Cargo.toml +++ b/libs/pavex_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pavex_macros" -version = "0.1.25" +version = "0.1.26" description = "Procedural macros for the Pavex framwork." keywords = ["pavex"] edition.workspace = true diff --git a/libs/pavex_miette/Cargo.toml b/libs/pavex_miette/Cargo.toml index 946b0fd81..6a63394d5 100644 --- a/libs/pavex_miette/Cargo.toml +++ b/libs/pavex_miette/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pavex_miette" -version = "0.1.25" +version = "0.1.26" description = "A custom Miette theme for Pavex errors." keywords = ["pavex"] edition.workspace = true diff --git a/libs/pavex_reflection/Cargo.toml b/libs/pavex_reflection/Cargo.toml index 48212fed2..59bba4831 100644 --- a/libs/pavex_reflection/Cargo.toml +++ b/libs/pavex_reflection/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pavex_reflection" -version = "0.1.25" +version = "0.1.26" description = "Utility types when working with compile-time reflection in Rust" keywords = ["pavex"] edition.workspace = true diff --git a/libs/pavex_test_runner/Cargo.toml b/libs/pavex_test_runner/Cargo.toml index db4db6a75..7a092a3a3 100644 --- a/libs/pavex_test_runner/Cargo.toml +++ b/libs/pavex_test_runner/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pavex_test_runner" -version = "0.1.25" +version = "0.1.26" description = "A custom test runner to execute UI tests for Pavex" keywords = ["pavex"] edition.workspace = true @@ -30,7 +30,7 @@ walkdir = "2" serde_json = "1" itertools = "0.12" sha2 = "0.10.6" -persist_if_changed = { path = "../persist_if_changed", version = "0.1.25" } +persist_if_changed = { path = "../persist_if_changed", version = "0.1.26" } object-pool = "0.5" num_cpus = "1" globwalk = "0.9.1" diff --git a/libs/pavex_tracing/Cargo.toml b/libs/pavex_tracing/Cargo.toml index db9958ea7..1d9940b39 100644 --- a/libs/pavex_tracing/Cargo.toml +++ b/libs/pavex_tracing/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pavex_tracing" -version = "0.1.25" +version = "0.1.26" edition.workspace = true repository.workspace = true homepage.workspace = true @@ -11,4 +11,4 @@ readme = "README.md" [dependencies] tracing = { version = "0.1", default-features = false, features = ["std"] } -pavex = { version = "0.1.25", path = "../pavex" } +pavex = { version = "0.1.26", path = "../pavex" } diff --git a/libs/pavexc/Cargo.toml b/libs/pavexc/Cargo.toml index e7030d471..3e909d243 100644 --- a/libs/pavexc/Cargo.toml +++ b/libs/pavexc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pavexc" -version = "0.1.25" +version = "0.1.26" description = "The compiler powering Pavex" keywords = ["pavex"] edition.workspace = true @@ -18,8 +18,8 @@ vergen = { version = "8.0.0", features = ["build", "git", "gitcl"] } debug_assertions = [] [dependencies] -pavex = { path = "../pavex", version = "0.1.25" } -pavex_bp_schema = { path = "../pavex_bp_schema", version = "0.1.25" } +pavex = { path = "../pavex", version = "0.1.26" } +pavex_bp_schema = { path = "../pavex_bp_schema", version = "0.1.26" } syn = { version = "2", features = ["full", "extra-traits", "visit"] } rustdoc-types = "0.24.0" serde = { version = "1.0.139", features = ["derive"] } @@ -49,7 +49,7 @@ textwrap = "0.16.0" once_cell = "1.17.1" toml_edit = { version = "0.21", features = ["serde"] } semver = "1.0.17" -persist_if_changed = { path = "../persist_if_changed", version = "0.1.25" } +persist_if_changed = { path = "../persist_if_changed", version = "0.1.26" } matchit = { version = "0.7", package = "pavex_matchit" } # Sqlite cache diff --git a/libs/pavexc_cli/Cargo.toml b/libs/pavexc_cli/Cargo.toml index 716234b62..7e0be6aba 100644 --- a/libs/pavexc_cli/Cargo.toml +++ b/libs/pavexc_cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pavexc_cli" -version = "0.1.25" +version = "0.1.26" description = "A CLI interface for the Pavex compiler." keywords = ["pavex"] edition.workspace = true @@ -14,8 +14,8 @@ path = "src/main.rs" [dependencies] clap = { version = "4", features = ["derive", "env"] } -pavexc = { path = "../pavexc", version = "0.1.25" } -pavex_miette = { path = "../pavex_miette", version = "0.1.25" } +pavexc = { path = "../pavexc", version = "0.1.26" } +pavex_miette = { path = "../pavex_miette", version = "0.1.26" } miette = { version = "6.0.1" } fs-err = "2.7.0" tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] } @@ -28,7 +28,7 @@ supports-color = { version = "3.0.0" } include_dir = "0.7.3" path-absolutize = "3.1.1" ron = "0.8" -generate_from_path = { path = "../generate_from_path", version = "0.1.25" } +generate_from_path = { path = "../generate_from_path", version = "0.1.26" } tempfile = "3.9.0" better-panic = "0.3.0" diff --git a/libs/pavexc_cli_client/Cargo.toml b/libs/pavexc_cli_client/Cargo.toml index 09941d0bc..ad68c8306 100644 --- a/libs/pavexc_cli_client/Cargo.toml +++ b/libs/pavexc_cli_client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pavexc_cli_client" -version = "0.1.25" +version = "0.1.26" description = "A convenient Rust interface to execute pavexc CLI commands." keywords = ["pavex"] edition.workspace = true @@ -9,5 +9,5 @@ license.workspace = true [dependencies] anyhow = "1" -pavex = { path = "../pavex", version = "0.1.25" } +pavex = { path = "../pavex", version = "0.1.26" } thiserror = "1.0.56" diff --git a/libs/persist_if_changed/Cargo.toml b/libs/persist_if_changed/Cargo.toml index 016358876..4ffbd0d52 100644 --- a/libs/persist_if_changed/Cargo.toml +++ b/libs/persist_if_changed/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "persist_if_changed" -version = "0.1.25" +version = "0.1.26" description = "A library for persisting data to disk only if it has changed." keywords = ["pavex"] edition.workspace = true