rhai/codegen/Cargo.toml

22 lines
553 B
TOML
Raw Normal View History

2020-08-01 11:52:26 -05:00
[package]
name = "rhai_codegen"
2021-01-15 19:55:14 +08:00
version = "0.3.2"
2020-08-01 11:52:26 -05:00
edition = "2018"
authors = ["jhwgh1968"]
2020-10-07 22:56:21 +08:00
description = "Procedural macro support package for Rhai, a scripting language for Rust"
2021-01-07 17:30:06 +08:00
homepage = "https://rhaiscript.github.io/book/plugins/index.html"
repository = "https://github.com/rhaiscript/rhai"
2020-08-01 11:52:26 -05:00
license = "MIT OR Apache-2.0"
[lib]
proc-macro = true
[dev-dependencies]
2020-08-02 15:39:08 +08:00
rhai = { path = ".." }
2020-08-01 11:52:26 -05:00
trybuild = "1"
[dependencies]
proc-macro2 = "1"
syn = { version = "1", features = ["full", "parsing", "printing", "proc-macro", "extra-traits"] }
quote = "1"