Skip to content

Commit 05d5242

Browse files
chore: Pull in slightly older version of regex
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>
1 parent 77c012d commit 05d5242

File tree

4 files changed

+16
-14
lines changed

4 files changed

+16
-14
lines changed

Cargo.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ readme = "README.md"
1010
repository = "https://github.com/wasmcloud/wadm"
1111

1212
[workspace.package]
13-
version = "0.17.0"
13+
version = "0.17.1"
1414

1515
[features]
1616
default = []
@@ -66,7 +66,9 @@ opentelemetry-otlp = { version = "0.10", features = [
6666
"reqwest-client",
6767
] }
6868
rand = { version = "0.8", features = ["small_rng"] }
69-
regex = "1.11.0"
69+
# NOTE(thomastaylor312): Pinning this temporarily to 1.10 due to transitive dependency with oci
70+
# crates that are pinned to 1.10
71+
regex = "~1.10"
7072
schemars = "0.8"
7173
semver = { version = "1.0.16", features = ["serde"] }
7274
serde = "1"
@@ -82,9 +84,9 @@ tracing-subscriber = { version = "0.3.7", features = ["env-filter", "json"] }
8284
ulid = { version = "1", features = ["serde"] }
8385
utoipa = "4"
8486
uuid = "1"
85-
wadm = { version = "0.17.0", path = "./crates/wadm" }
86-
wadm-client = { version = "0.6.0", path = "./crates/wadm-client" }
87-
wadm-types = { version = "0.6.0", path = "./crates/wadm-types" }
87+
wadm = { version = "0.17.1", path = "./crates/wadm" }
88+
wadm-client = { version = "0.6.1", path = "./crates/wadm-client" }
89+
wadm-types = { version = "0.6.1", path = "./crates/wadm-types" }
8890
wasmcloud-control-interface = { version = "2.2.0" }
8991
wasmcloud-secrets-types = "0.2.0"
9092
wit-bindgen-wrpc = { version = "0.3.7", default-features = false }

crates/wadm-client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "wadm-client"
33
description = "A client library for interacting with the wadm API"
4-
version = "0.6.0"
4+
version = "0.6.1"
55
edition = "2021"
66
authors = ["wasmCloud Team"]
77
keywords = ["webassembly", "wasmcloud", "wadm"]

crates/wadm-types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "wadm-types"
33
description = "Types and validators for the wadm API"
4-
version = "0.6.0"
4+
version = "0.6.1"
55
edition = "2021"
66
authors = ["wasmCloud Team"]
77
keywords = ["webassembly", "wasmcloud", "wadm"]

0 commit comments

Comments
 (0)