29 lines
779 B
TOML
29 lines
779 B
TOML
[package]
|
|
categories = ["api-bindings", "web-programming"]
|
|
description = "Procedural macros used by the Ruma crates."
|
|
homepage = "https://www.ruma.io/"
|
|
keywords = ["matrix", "chat", "messaging", "ruma"]
|
|
license = "MIT"
|
|
name = "ruma-macros"
|
|
readme = "README.md"
|
|
repository = "https://github.com/ruma/ruma"
|
|
version = "0.10.5"
|
|
edition = "2021"
|
|
rust-version = "1.60"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[features]
|
|
compat = []
|
|
|
|
[dependencies]
|
|
once_cell = "1.13.0"
|
|
proc-macro-crate = "1.0.0"
|
|
proc-macro2 = "1.0.24"
|
|
quote = "1.0.8"
|
|
ruma-identifiers-validation = { version = "0.9.0", path = "../ruma-identifiers-validation", default-features = false }
|
|
serde = { version = "1.0.139", features = ["derive"] }
|
|
syn = { version = "1.0.57", features = ["extra-traits", "full", "visit"] }
|
|
toml = "0.5.9"
|