diff options
author | Leo Kettmeir <crowlkats@toaxl.com> | 2022-11-22 21:07:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-22 21:07:35 +0100 |
commit | 13e3acf71dd8443d8d158087d8c0a0cb72167f9a (patch) | |
tree | 7455c069643f10bc9de5d6c8993defddeda378fd /test_ffi | |
parent | 14904f6a2cac6b288a893add3e129c2668ea3a5a (diff) |
chore: workspace inheritance (#16343)
Diffstat (limited to 'test_ffi')
-rw-r--r-- | test_ffi/Cargo.toml | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/test_ffi/Cargo.toml b/test_ffi/Cargo.toml index 38dd86b3e..3c588dbe8 100644 --- a/test_ffi/Cargo.toml +++ b/test_ffi/Cargo.toml @@ -3,13 +3,15 @@ [package] name = "test_ffi" version = "0.1.0" -authors = ["the deno authors"] -edition = "2021" +authors.workspace = true +edition.workspace = true +license.workspace = true publish = false +repository.workspace = true [lib] crate-type = ["cdylib"] [dev-dependencies] -pretty_assertions = "1.2.1" -test_util = { path = "../test_util" } +pretty_assertions.workspace = true +test_util.workspace = true |