Skip to content

Commit

Permalink
Merge pull request #2668 from itowlson/break-circular-dependency-spin…
Browse files Browse the repository at this point in the history
…-http-spin-testing

Break circular dependency between `http` and `testing` crates
  • Loading branch information
rylev authored Jul 22, 2024
2 parents 286cf43 + 1c8fb60 commit ee6a267
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 9 deletions.
5 changes: 2 additions & 3 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ redis = "0.24"
runtime-tests = { path = "tests/runtime-tests" }
test-components = { path = "tests/test-components" }
test-codegen-macro = { path = "crates/test-codegen-macro" }
test-environment = { git = "https://github.com/fermyon/conformance-tests", branch = "main" }
test-environment = { git = "https://github.com/fermyon/conformance-tests", rev = "2bb3eb83467a9e9595fa0fd11d7a49fa0300b113" }

[build-dependencies]
cargo-target-dep = { git = "https://github.com/fermyon/cargo-target-dep", rev = "482f269eceb7b1a7e8fc618bf8c082dd24979cf1" }
Expand Down
1 change: 0 additions & 1 deletion crates/http/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ spin-app = { path = "../app", optional = true }
spin-locked-app = { path = "../locked-app" }

[dev-dependencies]
spin-testing = { path = "../testing" }
toml = "0.8.2"

[features]
Expand Down
4 changes: 2 additions & 2 deletions tests/conformance-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ rust-version.workspace = true
[dependencies]
anyhow = "1.0"
testing-framework = { path = "../testing-framework" }
conformance-tests = { git = "https://github.com/fermyon/conformance-tests", branch = "main" }
test-environment = { git = "https://github.com/fermyon/conformance-tests", branch = "main" }
conformance-tests = { git = "https://github.com/fermyon/conformance-tests", rev = "2bb3eb83467a9e9595fa0fd11d7a49fa0300b113" }
test-environment = { git = "https://github.com/fermyon/conformance-tests", rev = "2bb3eb83467a9e9595fa0fd11d7a49fa0300b113" }

[lints]
workspace = true
2 changes: 1 addition & 1 deletion tests/runtime-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ anyhow = "1.0"
env_logger = "0.10.0"
log = "0.4"
testing-framework = { path = "../testing-framework" }
test-environment = { git = "https://github.com/fermyon/conformance-tests", branch = "main" }
test-environment = { git = "https://github.com/fermyon/conformance-tests", rev = "2bb3eb83467a9e9595fa0fd11d7a49fa0300b113" }
test-components = { path = "../test-components" }
2 changes: 1 addition & 1 deletion tests/testing-framework/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ nix = "0.26.1"
regex = "1.10.2"
reqwest = { workspace = true }
temp-dir = "0.1.11"
test-environment = { git = "https://github.com/fermyon/conformance-tests", branch = "main" }
test-environment = { git = "https://github.com/fermyon/conformance-tests", rev = "2bb3eb83467a9e9595fa0fd11d7a49fa0300b113" }
spin-trigger-http = { path = "../../crates/trigger-http" }
spin-http = { path = "../../crates/http" }
spin-trigger = { path = "../../crates/trigger" }
Expand Down

0 comments on commit ee6a267

Please sign in to comment.