2022-11-22 15:07:35 -05:00
|
|
|
# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
|
|
|
|
2022-03-14 13:44:15 -04:00
|
|
|
[package]
|
|
|
|
name = "deno_ops"
|
2022-12-01 08:46:27 -05:00
|
|
|
version = "0.40.0"
|
2022-11-22 15:07:35 -05:00
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2022-03-14 13:44:15 -04:00
|
|
|
readme = "README.md"
|
2022-11-22 15:07:35 -05:00
|
|
|
repository.workspace = true
|
2022-03-14 13:44:15 -04:00
|
|
|
description = "Proc macro for writing Deno Ops"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "./lib.rs"
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
2022-11-22 15:07:35 -05:00
|
|
|
once_cell.workspace = true
|
2022-11-10 06:53:31 -05:00
|
|
|
pmutil = "0.5.3"
|
2022-03-14 13:44:15 -04:00
|
|
|
proc-macro-crate = "1.1.3"
|
2022-11-22 15:07:35 -05:00
|
|
|
proc-macro2.workspace = true
|
|
|
|
quote.workspace = true
|
|
|
|
regex.workspace = true
|
|
|
|
syn.workspace = true
|
2022-08-21 08:07:53 -04:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-11-10 06:53:31 -05:00
|
|
|
prettyplease = "0.1.21"
|
|
|
|
testing_macros = "0.2.7"
|
2022-11-22 15:07:35 -05:00
|
|
|
trybuild = "1.0.71"
|