2020-08-01 18:52:26 +02:00
|
|
|
[package]
|
|
|
|
name = "rhai_codegen"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2018"
|
2020-09-09 03:12:28 +02:00
|
|
|
authors = ["jhwgh1968"]
|
2020-08-01 18:52:26 +02:00
|
|
|
description = "Proceducral macro support package for Rhai, a scripting language for Rust"
|
2020-09-30 16:55:40 +02:00
|
|
|
homepage = "https://schungx.github.io/rhai/plugins/index.html"
|
2020-08-01 18:52:26 +02:00
|
|
|
repository = "https://github.com/jonathandturner/rhai"
|
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-08-02 09:39:08 +02:00
|
|
|
rhai = { path = ".." }
|
2020-08-01 18:52:26 +02:00
|
|
|
trybuild = "1"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
proc-macro2 = "1"
|
|
|
|
syn = { version = "1", features = ["full", "parsing", "printing", "proc-macro", "extra-traits"] }
|
|
|
|
quote = "1"
|