diff --git a/src/tests/toml-fallback-names/Cargo.toml b/src/tests/toml-fallback-names/Cargo.toml index 21bd9f6..4fed56f 100644 --- a/src/tests/toml-fallback-names/Cargo.toml +++ b/src/tests/toml-fallback-names/Cargo.toml @@ -1,3 +1,6 @@ +[package] +name = "toml-fallback-names" + [package.metadata.system-deps.test_lib] version = "1.0" name = "nosuchlib" diff --git a/src/tests/toml-feature-not-string/Cargo.toml b/src/tests/toml-feature-not-string/Cargo.toml index e794ddd..5bcac7d 100644 --- a/src/tests/toml-feature-not-string/Cargo.toml +++ b/src/tests/toml-feature-not-string/Cargo.toml @@ -1,2 +1,5 @@ +[package] +name = "toml-feature-not-string" + [package.metadata.system-deps] testlib = { version = "1", feature = 2 } diff --git a/src/tests/toml-feature-versions/Cargo.toml b/src/tests/toml-feature-versions/Cargo.toml index c4ade2e..cb5e031 100644 --- a/src/tests/toml-feature-versions/Cargo.toml +++ b/src/tests/toml-feature-versions/Cargo.toml @@ -1,2 +1,5 @@ +[package] +name = "toml-feature-versions" + [package.metadata.system-deps] testdata = { version = "4", v5 = { version = "5" }, v6 = { version = "6" }} diff --git a/src/tests/toml-good/Cargo.toml b/src/tests/toml-good/Cargo.toml index a77ad9f..a0c11d2 100644 --- a/src/tests/toml-good/Cargo.toml +++ b/src/tests/toml-good/Cargo.toml @@ -1,3 +1,6 @@ +[package] +name = "toml-good" + [package.metadata.system-deps] testdata = "4" testlib = { version = "1", feature = "test-feature" } diff --git a/src/tests/toml-invalid-cfg/Cargo.toml b/src/tests/toml-invalid-cfg/Cargo.toml index 6bd6b43..2fdf319 100644 --- a/src/tests/toml-invalid-cfg/Cargo.toml +++ b/src/tests/toml-invalid-cfg/Cargo.toml @@ -1,2 +1,5 @@ +[package] +name = "toml-invalid-cfg" + [package.metadata.system-deps.'cfg(badger)'] testanotherlib = { version = "1", optional = true } \ No newline at end of file diff --git a/src/tests/toml-missing-key/Cargo.toml b/src/tests/toml-missing-key/Cargo.toml index 18bfa8c..c5f7346 100644 --- a/src/tests/toml-missing-key/Cargo.toml +++ b/src/tests/toml-missing-key/Cargo.toml @@ -1 +1,4 @@ +[package] +name = "toml-missing-key" + no-pkg-config-here = true diff --git a/src/tests/toml-not-table/Cargo.toml b/src/tests/toml-not-table/Cargo.toml index d309622..52d13ce 100644 --- a/src/tests/toml-not-table/Cargo.toml +++ b/src/tests/toml-not-table/Cargo.toml @@ -1,2 +1,5 @@ +[package] +name = "toml-not-table" + [package.metadata] system-deps = "not a table" diff --git a/src/tests/toml-optional/Cargo.toml b/src/tests/toml-optional/Cargo.toml index 465d9b2..62833ba 100644 --- a/src/tests/toml-optional/Cargo.toml +++ b/src/tests/toml-optional/Cargo.toml @@ -1,3 +1,6 @@ +[package] +name = "toml-optional" + [package.metadata.system-deps] testlib = { version = "1.0", optional = true, v5 = { version = "5.0", name = "testlib-5.0", optional = false }} testmore = { version = "2", v3 = { version = "3.0", optional = true }} diff --git a/src/tests/toml-os-specific/Cargo.toml b/src/tests/toml-os-specific/Cargo.toml index d4c389f..d5dc92d 100644 --- a/src/tests/toml-os-specific/Cargo.toml +++ b/src/tests/toml-os-specific/Cargo.toml @@ -1,3 +1,6 @@ +[package] +name = "toml-os-specific" + [package.metadata.system-deps.'cfg(target_os = "linux")'] testdata = "1" [package.metadata.system-deps.'cfg(not(target_os = "macos"))'] diff --git a/src/tests/toml-override-name/Cargo.toml b/src/tests/toml-override-name/Cargo.toml index ccd1315..287b5db 100644 --- a/src/tests/toml-override-name/Cargo.toml +++ b/src/tests/toml-override-name/Cargo.toml @@ -1,2 +1,5 @@ +[package] +name = "toml-override-name" + [package.metadata.system-deps] test_lib = { name = "testlib", version = "1.0", v1_2 = { version = "1.2" } } diff --git a/src/tests/toml-rpath/Cargo.toml b/src/tests/toml-rpath/Cargo.toml index c5ae587..a7cc1a7 100644 --- a/src/tests/toml-rpath/Cargo.toml +++ b/src/tests/toml-rpath/Cargo.toml @@ -1,3 +1,6 @@ +[package] +name = "toml-rpath" + [package.metadata.system-deps] testdata = "4" testlibwithrpath = { version = "1", feature = "test-feature" } diff --git a/src/tests/toml-static/Cargo.toml b/src/tests/toml-static/Cargo.toml index 9d15ca8..2fb64a8 100644 --- a/src/tests/toml-static/Cargo.toml +++ b/src/tests/toml-static/Cargo.toml @@ -1,3 +1,6 @@ +[package] +name = "toml-static" + [package.metadata.system-deps] testdata = "4" teststaticlib = { version = "1", feature = "test-feature" } diff --git a/src/tests/toml-two-libs/Cargo.toml b/src/tests/toml-two-libs/Cargo.toml index 167e9e8..2a79cf4 100644 --- a/src/tests/toml-two-libs/Cargo.toml +++ b/src/tests/toml-two-libs/Cargo.toml @@ -1,3 +1,6 @@ +[package] +name = "toml-two-libs" + [package.metadata.system-deps] testlib = { version = "1" } testanotherlib = { version = "1" } diff --git a/src/tests/toml-unexpected-key/Cargo.toml b/src/tests/toml-unexpected-key/Cargo.toml index 6d05bfa..5113906 100644 --- a/src/tests/toml-unexpected-key/Cargo.toml +++ b/src/tests/toml-unexpected-key/Cargo.toml @@ -1,2 +1,5 @@ +[package] +name = "toml-unexpected-key" + [package.metadata.system-deps] testlib = { version = "1", color = "blue" } diff --git a/src/tests/toml-version-fallback-names/Cargo.toml b/src/tests/toml-version-fallback-names/Cargo.toml index 007bb03..dd221b7 100644 --- a/src/tests/toml-version-fallback-names/Cargo.toml +++ b/src/tests/toml-version-fallback-names/Cargo.toml @@ -1,3 +1,6 @@ +[package] +name = "toml-version-fallback-names" + [package.metadata.system-deps.test_lib] version = "0.1" name = "nosuchlib" diff --git a/src/tests/toml-version-in-table-not-string/Cargo.toml b/src/tests/toml-version-in-table-not-string/Cargo.toml index 79ed920..2b315b0 100644 --- a/src/tests/toml-version-in-table-not-string/Cargo.toml +++ b/src/tests/toml-version-in-table-not-string/Cargo.toml @@ -1,2 +1,5 @@ +[package] +name = "toml-version-in-table-not-string" + [package.metadata.system-deps] testlib = { version = 1 } diff --git a/src/tests/toml-version-missing/Cargo.toml b/src/tests/toml-version-missing/Cargo.toml index 0b6c924..c1580f4 100644 --- a/src/tests/toml-version-missing/Cargo.toml +++ b/src/tests/toml-version-missing/Cargo.toml @@ -1,2 +1,5 @@ +[package] +name = "toml-version-missing" + [package.metadata.system-deps] testlib = { feature = "test-feature" } diff --git a/src/tests/toml-version-names/Cargo.toml b/src/tests/toml-version-names/Cargo.toml index a8e05f7..2730728 100644 --- a/src/tests/toml-version-names/Cargo.toml +++ b/src/tests/toml-version-names/Cargo.toml @@ -1,2 +1,5 @@ +[package] +name = "toml-version-names" + [package.metadata.system-deps] testlib = { version = "1.2", v2 = { version = "2.0", name = "testlib-2.0" }, v3 = { version = "3.0", name = "testlib-3.0" }} \ No newline at end of file diff --git a/src/tests/toml-version-not-string/Cargo.toml b/src/tests/toml-version-not-string/Cargo.toml index 1dcf8ed..df0b35a 100644 --- a/src/tests/toml-version-not-string/Cargo.toml +++ b/src/tests/toml-version-not-string/Cargo.toml @@ -1,2 +1,5 @@ +[package] +name = "toml-version-not-string" + [package.metadata.system-deps] testlib = 1 diff --git a/src/tests/toml-version-range-unsatisfied/Cargo.toml b/src/tests/toml-version-range-unsatisfied/Cargo.toml index 4af2813..54b8969 100644 --- a/src/tests/toml-version-range-unsatisfied/Cargo.toml +++ b/src/tests/toml-version-range-unsatisfied/Cargo.toml @@ -1,3 +1,6 @@ +[package] +name = "toml-version-range-unsatisfied" + [package.metadata.system-deps] testdata = "4" testlib = { version = ">= 1, < 1.2", feature = "test-feature" } diff --git a/src/tests/toml-version-range/Cargo.toml b/src/tests/toml-version-range/Cargo.toml index 4e06117..eb13c49 100644 --- a/src/tests/toml-version-range/Cargo.toml +++ b/src/tests/toml-version-range/Cargo.toml @@ -1,3 +1,6 @@ +[package] +name = "toml-version-range" + [package.metadata.system-deps] testdata = "4" testlib = { version = ">= 1, < 2", feature = "test-feature" }