diff options
Diffstat (limited to 'test/rust-from-c')
-rw-r--r-- | test/rust-from-c/TARGETS | 2 | ||||
-rw-r--r-- | test/rust-from-c/foo/TARGETS | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/test/rust-from-c/TARGETS b/test/rust-from-c/TARGETS index 1cb8019..22230e6 100644 --- a/test/rust-from-c/TARGETS +++ b/test/rust-from-c/TARGETS @@ -6,7 +6,7 @@ , "private-deps": [["./", "foo", "foo"]] } , "test_foo": - { "type": ["rules/rust", "test"] + { "type": ["@", "rules-rust", "rust", "test"] , "name": ["test_foo"] , "crate_root": ["foo/foo_test.rs"] , "stage": ["test_foo"] diff --git a/test/rust-from-c/foo/TARGETS b/test/rust-from-c/foo/TARGETS index 17c66ba..5a3e43c 100644 --- a/test/rust-from-c/foo/TARGETS +++ b/test/rust-from-c/foo/TARGETS @@ -1,5 +1,5 @@ { "foo": - { "type": ["rules/rust", "library"] + { "type": ["@", "rules-rust", "rust", "library"] , "name": ["foo"] , "crate_root": ["foo.rs"] , "c_hdrs": ["foo.h"] @@ -7,7 +7,7 @@ , "deps": ["bar"] } , "bar": - { "type": ["rules/rust", "library"] + { "type": ["@", "rules-rust", "rust", "library"] , "name": ["bar"] , "crate_root": ["bar.rs"] , "stage": ["bar"] |