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 /ext/napi | |
parent | 14904f6a2cac6b288a893add3e129c2668ea3a5a (diff) |
chore: workspace inheritance (#16343)
Diffstat (limited to 'ext/napi')
-rw-r--r-- | ext/napi/Cargo.toml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/napi/Cargo.toml b/ext/napi/Cargo.toml index 2909b2e38..378dba0f3 100644 --- a/ext/napi/Cargo.toml +++ b/ext/napi/Cargo.toml @@ -3,16 +3,16 @@ [package] name = "deno_napi" version = "0.8.0" -authors = ["the Deno authors"] -edition = "2021" -license = "MIT" +authors.workspace = true +edition.workspace = true +license.workspace = true readme = "README.md" -repository = "https://github.com/denoland/deno" +repository.workspace = true description = "NAPI implementation for Deno" [lib] path = "lib.rs" [dependencies] -deno_core = { version = "0.160.0", path = "../../core" } +deno_core.workspace = true libloading = { version = "0.7" } |