Skip to content

Commit

Permalink
chore: Pull in slightly older version of regex
Browse files Browse the repository at this point in the history
Because transitive deps suck. We need this so we can update the OCI deps
in the main host

Signed-off-by: Taylor Thomas <taylor@cosmonic.com>
  • Loading branch information
thomastaylor312 committed Oct 15, 2024
1 parent 77c012d commit 05d5242
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 14 deletions.
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 7 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ readme = "README.md"
repository = "https://github.com/wasmcloud/wadm"

[workspace.package]
version = "0.17.0"
version = "0.17.1"

[features]
default = []
Expand Down Expand Up @@ -66,7 +66,9 @@ opentelemetry-otlp = { version = "0.10", features = [
"reqwest-client",
] }
rand = { version = "0.8", features = ["small_rng"] }
regex = "1.11.0"
# NOTE(thomastaylor312): Pinning this temporarily to 1.10 due to transitive dependency with oci
# crates that are pinned to 1.10
regex = "~1.10"
schemars = "0.8"
semver = { version = "1.0.16", features = ["serde"] }
serde = "1"
Expand All @@ -82,9 +84,9 @@ tracing-subscriber = { version = "0.3.7", features = ["env-filter", "json"] }
ulid = { version = "1", features = ["serde"] }
utoipa = "4"
uuid = "1"
wadm = { version = "0.17.0", path = "./crates/wadm" }
wadm-client = { version = "0.6.0", path = "./crates/wadm-client" }
wadm-types = { version = "0.6.0", path = "./crates/wadm-types" }
wadm = { version = "0.17.1", path = "./crates/wadm" }
wadm-client = { version = "0.6.1", path = "./crates/wadm-client" }
wadm-types = { version = "0.6.1", path = "./crates/wadm-types" }
wasmcloud-control-interface = { version = "2.2.0" }
wasmcloud-secrets-types = "0.2.0"
wit-bindgen-wrpc = { version = "0.3.7", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion crates/wadm-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "wadm-client"
description = "A client library for interacting with the wadm API"
version = "0.6.0"
version = "0.6.1"
edition = "2021"
authors = ["wasmCloud Team"]
keywords = ["webassembly", "wasmcloud", "wadm"]
Expand Down
2 changes: 1 addition & 1 deletion crates/wadm-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "wadm-types"
description = "Types and validators for the wadm API"
version = "0.6.0"
version = "0.6.1"
edition = "2021"
authors = ["wasmCloud Team"]
keywords = ["webassembly", "wasmcloud", "wadm"]
Expand Down

0 comments on commit 05d5242

Please sign in to comment.