rhai/codegen/Cargo.toml

29 lines
827 B
TOML

[package]
name = "rhai_codegen"
version = "1.5.0"
edition = "2018"
resolver = "2"
authors = ["jhwgh1968", "Stephen Chung"]
description = "Procedural macros support package for Rhai, a scripting language and engine for Rust"
keywords = ["scripting", "scripting-engine", "scripting-language", "embedded", "plugin"]
categories = ["no-std", "embedded", "wasm", "parser-implementations"]
homepage = "https://rhai.rs/book/plugins/index.html"
repository = "https://github.com/rhaiscript/rhai"
license = "MIT OR Apache-2.0"
[lib]
proc-macro = true
[features]
default = []
metadata = []
[dependencies]
proc-macro2 = "1"
syn = { version = "2.0", features = ["full", "parsing", "printing", "proc-macro", "extra-traits"] }
quote = "1"
[dev-dependencies]
rhai = { path = "..", version = "1.12", features = ["metadata"] }
trybuild = "1"