rhai/codegen/Cargo.toml

29 lines
827 B
TOML
Raw Normal View History

2020-08-01 18:52:26 +02:00
[package]
name = "rhai_codegen"
2022-12-03 10:03:15 +01:00
version = "1.5.0"
2020-08-01 18:52:26 +02:00
edition = "2018"
2022-07-31 06:52:53 +02:00
resolver = "2"
2021-04-27 16:28:01 +02:00
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"]
2022-11-23 09:14:11 +01:00
categories = ["no-std", "embedded", "wasm", "parser-implementations"]
2021-01-30 00:19:54 +01:00
homepage = "https://rhai.rs/book/plugins/index.html"
2021-01-07 10:30:06 +01:00
repository = "https://github.com/rhaiscript/rhai"
2020-08-01 18:52:26 +02:00
license = "MIT OR Apache-2.0"
[lib]
proc-macro = true
[features]
default = []
metadata = []
2020-08-01 18:52:26 +02:00
[dependencies]
proc-macro2 = "1"
2024-03-03 19:34:40 +01:00
syn = { version = "2.0", features = ["full", "parsing", "printing", "proc-macro", "extra-traits"] }
2020-08-01 18:52:26 +02:00
quote = "1"
2022-07-31 06:52:53 +02:00
[dev-dependencies]
2022-12-03 10:03:15 +01:00
rhai = { path = "..", version = "1.12", features = ["metadata"] }
2022-07-31 06:52:53 +02:00
trybuild = "1"