From b5b60d9016a43e6df80846ec382d9e789453b30a Mon Sep 17 00:00:00 2001 From: Vojtech Kral Date: Mon, 5 Feb 2024 23:11:40 +0100 Subject: [PATCH] Fix: Use lib from crates in examples --- examples/docker/Cargo.toml | 4 ++-- examples/http/Cargo.toml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/docker/Cargo.toml b/examples/docker/Cargo.toml index 1013184..bd7895f 100644 --- a/examples/docker/Cargo.toml +++ b/examples/docker/Cargo.toml @@ -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" @@ -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" diff --git a/examples/http/Cargo.toml b/examples/http/Cargo.toml index c39a4c1..8392f1e 100644 --- a/examples/http/Cargo.toml +++ b/examples/http/Cargo.toml @@ -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" @@ -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"] }