mlua/mlua_derive/Cargo.toml

25 lines
707 B
TOML
Raw Normal View History

2019-10-01 13:11:51 -04:00
[package]
name = "mlua_derive"
2023-06-07 08:08:02 -04:00
version = "0.9.0-beta.2"
authors = ["Aleksandr Orlenko <zxteam@pm.me>"]
2023-03-11 20:03:31 -05:00
edition = "2021"
2019-11-05 06:50:58 -05:00
description = "Procedural macros for the mlua crate."
repository = "https://github.com/khvzak/mlua"
keywords = ["lua", "mlua"]
license = "MIT"
2019-10-01 13:11:51 -04:00
[lib]
proc-macro = true
2021-05-05 16:55:49 -04:00
[features]
macros = ["proc-macro-error", "itertools", "regex", "once_cell"]
2019-10-01 13:11:51 -04:00
[dependencies]
quote = "1.0"
2021-05-05 16:55:49 -04:00
proc-macro2 = { version = "1.0", features = ["span-locations"] }
proc-macro-error = { version = "1.0", optional = true }
2023-03-28 08:56:59 -04:00
syn = { version = "2.0", features = ["full"] }
2021-05-05 16:55:49 -04:00
itertools = { version = "0.10", optional = true }
regex = { version = "1.4", optional = true }
2022-04-19 18:55:16 -04:00
once_cell = { version = "1.0", optional = true }