2021-11-09 12:46:24 +03:00
|
|
|
[package]
|
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
|
|
description = "Rust plugin system for AST processing"
|
|
|
|
edition = "2018"
|
|
|
|
include = ["Cargo.toml", "src/**/*.rs"]
|
|
|
|
license = "Apache-2.0/MIT"
|
|
|
|
name = "rplugin"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2021-11-29 21:55:52 +03:00
|
|
|
version = "0.2.1"
|
2021-11-09 12:46:24 +03:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
abi_stable = "0.10.3"
|
2021-11-29 21:55:52 +03:00
|
|
|
rplugin_macros = {version = "0.1.1", path = "../rplugin_macros"}
|
2021-11-09 12:46:24 +03:00
|
|
|
string_cache = "0.8.2"
|
2021-11-21 08:55:59 +03:00
|
|
|
swc_common = {version = "0.14.6", path = "../swc_common", features = ["plugin-base"]}
|