2021-01-10 21:59:07 -05:00
|
|
|
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
2020-09-21 08:26:41 -04:00
|
|
|
|
2019-12-05 15:30:20 -05:00
|
|
|
[package]
|
|
|
|
name = "test_plugin"
|
|
|
|
version = "0.0.1"
|
|
|
|
authors = ["the deno authors"]
|
|
|
|
edition = "2018"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
|
|
|
[dependencies]
|
2020-01-05 11:56:18 -05:00
|
|
|
deno_core = { path = "../core" }
|
2021-05-17 08:44:40 -04:00
|
|
|
futures = "0.3.15"
|
2021-05-08 08:38:18 -04:00
|
|
|
serde = "1"
|
2020-06-18 11:54:55 -04:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-06-19 13:44:28 -04:00
|
|
|
test_util = { path = "../test_util" }
|