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 /ops | |
| parent | 14904f6a2cac6b288a893add3e129c2668ea3a5a (diff) | |
chore: workspace inheritance (#16343)
Diffstat (limited to 'ops')
| -rw-r--r-- | ops/Cargo.toml | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/ops/Cargo.toml b/ops/Cargo.toml index 19caa4d56..f0e7b8b0c 100644 --- a/ops/Cargo.toml +++ b/ops/Cargo.toml @@ -1,9 +1,13 @@ +# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. + [package] name = "deno_ops" version = "0.38.0" -edition = "2021" -license = "MIT" +authors.workspace = true +edition.workspace = true +license.workspace = true readme = "README.md" +repository.workspace = true description = "Proc macro for writing Deno Ops" [lib] @@ -11,16 +15,16 @@ path = "./lib.rs" proc-macro = true [dependencies] -once_cell = "1.10.0" +once_cell.workspace = true pmutil = "0.5.3" proc-macro-crate = "1.1.3" -proc-macro2 = "1" -quote = "1" -regex = "1.6.0" -syn = { version = "1", features = ["full", "extra-traits"] } +proc-macro2.workspace = true +quote.workspace = true +regex.workspace = true +syn.workspace = true [dev-dependencies] -deno_core = { path = "../core" } +deno_core.workspace = true prettyplease = "0.1.21" testing_macros = "0.2.7" -trybuild = "1.0.61" +trybuild = "1.0.71" |
