2022-04-29 16:01:35 +00:00
|
|
|
[package]
|
|
|
|
name = "instant-xml-macros"
|
2023-03-02 15:06:43 +00:00
|
|
|
version = "0.3.0"
|
2022-04-29 16:01:35 +00:00
|
|
|
edition = "2021"
|
2023-02-17 11:46:50 +00:00
|
|
|
rust-version = "1.58"
|
2022-04-29 16:01:35 +00:00
|
|
|
workspace = ".."
|
2022-06-09 08:45:39 +00:00
|
|
|
license = "Apache-2.0 OR MIT"
|
2023-02-27 09:37:44 +00:00
|
|
|
description = "Procedural macros for instant-xml"
|
|
|
|
documentation = "https://docs.rs/instant-xml-macros"
|
|
|
|
repository = "https://github.com/InstantDomain/instant-xml"
|
2022-04-29 16:01:35 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
heck = "0.4"
|
2022-06-08 11:36:58 +00:00
|
|
|
proc-macro2 = "1.0.39"
|
2022-04-29 16:01:35 +00:00
|
|
|
quote = "1.0.18"
|
2023-03-20 16:05:07 +00:00
|
|
|
syn = { version = "2", features = ["full"] }
|