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/node | |
parent | 14904f6a2cac6b288a893add3e129c2668ea3a5a (diff) |
chore: workspace inheritance (#16343)
Diffstat (limited to 'ext/node')
-rw-r--r-- | ext/node/Cargo.toml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/ext/node/Cargo.toml b/ext/node/Cargo.toml index b72e54130..edacfd832 100644 --- a/ext/node/Cargo.toml +++ b/ext/node/Cargo.toml @@ -3,19 +3,19 @@ [package] name = "deno_node" version = "0.15.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 = "Node compatibility for Deno" [lib] path = "lib.rs" [dependencies] -deno_core = { version = "0.160.0", path = "../../core" } -once_cell = "1.12.0" +deno_core.workspace = true +once_cell.workspace = true path-clean = "=0.1.0" -regex = "1" -serde = "1.0.136" +regex.workspace = true +serde = "1.0.144" |