Skip to content

Commit

Permalink
Fix: Use lib from crates in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
vojtechkral committed Feb 5, 2024
1 parent b804f85 commit b5b60d9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions examples/docker/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "cargo-fixture-example-docker"
version = "0.9.0"
authors = ["Vojtech Kral"]
description = "FIXME: descr"
description = "docker example for cargo-fixture"
license = "Apache-2.0"
edition = "2021"

Expand All @@ -15,7 +15,7 @@ _fixture = []

[dev-dependencies]
dockertest = "0.4.0"
cargo-fixture-lib = { path = "../../crates/lib", features = ["tokio"] } # FIXME: from crates
cargo-fixture-lib = { version = "1", features = ["tokio"] }

[[test]]
name = "fixture"
Expand Down
4 changes: 2 additions & 2 deletions examples/http/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "cargo-fixture-example-http"
version = "0.9.0"
authors = ["Vojtech Kral"]
description = "FIXME: descr"
description = "HTTP example for cargo-fixture"
license = "Apache-2.0"
edition = "2021"

Expand All @@ -13,7 +13,7 @@ reqwest = { version = "0.11.23", default-features = false }
_fixture = []

[dev-dependencies]
cargo-fixture-lib = { path = "../../crates/lib", features = ["tokio"] } # FIXME: from crates
cargo-fixture-lib = { version = "1", features = ["tokio"] }
hyper = { version = "1.1.0", features = ["server", "http1"] }
hyper-util = { version = "0.1.2", features = ["tokio"] }
tokio = { version = "1.34.0", features = ["rt", "macros"] }
Expand Down

0 comments on commit b5b60d9

Please sign in to comment.