diff options
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" |