mirror of
https://github.com/denoland/deno.git
synced 2024-12-24 08:09:08 -05:00
20 lines
357 B
TOML
20 lines
357 B
TOML
|
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
||
|
|
||
|
[package]
|
||
|
name = "test_plugin"
|
||
|
version = "0.0.1"
|
||
|
authors = ["the deno authors"]
|
||
|
edition = "2018"
|
||
|
publish = false
|
||
|
|
||
|
[lib]
|
||
|
crate-type = ["cdylib"]
|
||
|
|
||
|
[dependencies]
|
||
|
deno_core = { path = "../core" }
|
||
|
futures = "0.3.15"
|
||
|
serde = "1"
|
||
|
|
||
|
[dev-dependencies]
|
||
|
test_util = { path = "../test_util" }
|