mirror of
https://github.com/RGBCube/cstree
synced 2025-07-28 09:37:44 +00:00
23 lines
583 B
TOML
23 lines
583 B
TOML
[package]
|
|
name = "cstree_derive"
|
|
description = "Macro implementation of `#[derive(Syntax)]`"
|
|
keywords = ["cstree", "derive"]
|
|
edition.workspace = true
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
readme.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lib]
|
|
name = "cstree_derive"
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
proc-macro2 = "1.0.56"
|
|
quote = "1.0.26"
|
|
syn = { version = "2.0.14" }
|
|
|
|
[dev-dependencies]
|
|
cstree = { path = "../cstree" }
|