diff --git a/Cargo.lock b/Cargo.lock index 4f6f0dd..01a13b6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -247,10 +247,10 @@ checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" [[package]] name = "cargo-fixture" -version = "1.0.0" +version = "1.1.0" dependencies = [ "anyhow", - "cargo-fixture-lib 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "cargo-fixture-lib 1.0.0", "ctrlc", "futures-util", "log", @@ -268,6 +268,8 @@ dependencies = [ [[package]] name = "cargo-fixture-lib" version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b70a29a142d3a6318f641f22820dcdc8193b131b64ac25da7316a06b5e8dd4b" dependencies = [ "cargo-fixture-macros 0.9.0", "log", @@ -276,15 +278,12 @@ dependencies = [ "smol", "strum", "thiserror", - "tokio", "uds_windows", ] [[package]] name = "cargo-fixture-lib" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b70a29a142d3a6318f641f22820dcdc8193b131b64ac25da7316a06b5e8dd4b" +version = "1.1.0" dependencies = [ "cargo-fixture-macros 0.9.0", "log", @@ -293,6 +292,7 @@ dependencies = [ "smol", "strum", "thiserror", + "tokio", "uds_windows", ] @@ -309,7 +309,7 @@ dependencies = [ [[package]] name = "cargo-fixture-macros" -version = "1.0.0" +version = "1.1.0" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index 02db702..af0e2ff 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,12 +1,18 @@ -[package] -name = "cargo-fixture" -version = "1.0.0" +[workspace.package] +version = "1.1.0" authors = ["Vojtech Kral"] -description = "Surround cargo test with arbitrary Rust setup and teardown code." license = "Apache-2.0" keywords = ["rust", "cargo", "testing"] -edition = "2021" +[package] +name = "cargo-fixture" +description = "Surround cargo test with arbitrary Rust setup and teardown code." +version.workspace = true +authors.workspace = true +license.workspace = true +keywords.workspace = true + +edition = "2021" rust-version = "1.65" [[bin]] diff --git a/crates/lib/Cargo.toml b/crates/lib/Cargo.toml index 3f38acd..1b7001c 100644 --- a/crates/lib/Cargo.toml +++ b/crates/lib/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "cargo-fixture-lib" -version = "1.0.0" -authors = ["Vojtech Kral"] description = "Support library for the cargo-fixture cargo extension" -license = "Apache-2.0" -keywords = ["rust", "cargo", "testing"] -edition = "2021" +version.workspace = true +authors.workspace = true +license.workspace = true +keywords.workspace = true +edition = "2021" rust-version = "1.65" [lib] diff --git a/crates/macros/Cargo.toml b/crates/macros/Cargo.toml index 83ab80a..4905fb9 100644 --- a/crates/macros/Cargo.toml +++ b/crates/macros/Cargo.toml @@ -1,10 +1,11 @@ [package] name = "cargo-fixture-macros" -version = "1.0.0" -authors = ["Vojtech Kral "] description = "Macros for the cargo-fixture cargo extension" -license = "Apache-2.0" -keywords = ["rust", "cargo", "testing"] +version.workspace = true +authors.workspace = true +license.workspace = true +keywords.workspace = true + edition = "2021" [lib]