2020-08-01 18:52:26 +02:00
|
|
|
[package]
|
|
|
|
name = "rhai_codegen"
|
2021-03-19 03:30:30 +01:00
|
|
|
version = "0.3.4"
|
2020-08-01 18:52:26 +02:00
|
|
|
edition = "2018"
|
2020-09-09 03:12:28 +02:00
|
|
|
authors = ["jhwgh1968"]
|
2020-10-07 16:56:21 +02:00
|
|
|
description = "Procedural macro support package for Rhai, a scripting language for Rust"
|
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
|
|
|
|
|
2021-03-26 03:59:34 +01:00
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
metadata = []
|
|
|
|
|
2020-08-01 18:52:26 +02:00
|
|
|
[dev-dependencies]
|
2021-03-22 12:21:42 +01:00
|
|
|
rhai = { path = "..", version = "^0.19.15" }
|
2020-08-01 18:52:26 +02:00
|
|
|
trybuild = "1"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
proc-macro2 = "1"
|
2021-03-29 06:46:46 +02:00
|
|
|
syn = { version = "1.0", features = ["full", "parsing", "printing", "proc-macro", "extra-traits"] }
|
2020-08-01 18:52:26 +02:00
|
|
|
quote = "1"
|