Merge pull request #3231 from matrix-org/andybalaam/wiremock-as-workspace-dep

build: Make wiremock a workspace dependency
This commit is contained in:
Andy Balaam
2024-03-19 10:04:04 +00:00
committed by GitHub
4 changed files with 4 additions and 3 deletions

View File

@@ -63,6 +63,7 @@ tracing-core = "0.1.32"
uniffi = { git = "https://github.com/mozilla/uniffi-rs", rev = "789a9023b522562a95618443cee5a0d4f111c4c7" }
uniffi_bindgen = { git = "https://github.com/mozilla/uniffi-rs", rev = "789a9023b522562a95618443cee5a0d4f111c4c7" }
vodozemac = "0.5.1"
wiremock = "0.5.21"
zeroize = "1.6.0"
matrix-sdk = { path = "crates/matrix-sdk", version = "0.7.0", default-features = false }

View File

@@ -62,4 +62,4 @@ matrix-sdk = { workspace = true, features = ["testing"] }
matrix-sdk-test = { workspace = true }
stream_assert = { workspace = true }
tempfile = "3.3.0"
wiremock = "0.5.13"
wiremock = { workspace = true }

View File

@@ -142,7 +142,7 @@ backoff = { version = "0.4.0", features = ["tokio"] }
reqwest = { version = "0.11.10", default_features = false, features = ["stream"] }
tokio = { workspace = true, features = ["fs", "rt", "macros"] }
tokio-util = "0.7.9"
wiremock = { version = "0.5.13", optional = true }
wiremock = { workspace = true, optional = true }
[dev-dependencies]
anyhow = { workspace = true }

View File

@@ -26,4 +26,4 @@ serde_json = "1.0.108"
tempfile = "3.3.0"
tokio = { workspace = true, features = ["rt", "rt-multi-thread", "macros"] }
tracing = { workspace = true }
wiremock = "0.5.21"
wiremock = { workspace = true }