1
Fork 0
mirror of https://github.com/RGBCube/cstree synced 2025-07-29 01:57:44 +00:00

Add derive macro for Syntax (used to be Language) (#51)

This commit is contained in:
DQ 2023-04-18 20:10:35 +02:00 committed by GitHub
parent 2aa543036f
commit c5279bae7d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
70 changed files with 1459 additions and 899 deletions

16
test_suite/Cargo.toml Normal file
View file

@ -0,0 +1,16 @@
[package]
name = "cstree_test_suite"
publish = false
version = "0.0.0"
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
readme.workspace = true
rust-version.workspace = true
[dependencies]
cstree = { path = "../cstree", features = ["derive"] }
[dev-dependencies]
trybuild = { version = "1.0.80", features = ["diff"] }