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

initial commit

This commit is contained in:
Domenic Quirl 2021-01-13 10:23:34 +01:00
commit ac4f659470
23 changed files with 5031 additions and 0 deletions

23
Cargo.toml Normal file
View file

@ -0,0 +1,23 @@
[package]
edition = "2018"
name = "cstree"
version = "0.0.2"
authors = ["Domenic Quirl <DomenicQuirl@pm.me>", "Aleksey Kladov <aleksey.kladov@gmail.com>"]
description = "Library for generic lossless syntax trees"
license = "MIT OR Apache-2.0"
repository = "https://github.com/domenicquirl/cstree"
[dependencies]
serde = { version = "1.0.89", optional = true, default-features = false }
lasso = "0.4.1"
text-size = "1.0.0"
fxhash= "0.2.1"
smallvec = "1.6.1"
servo_arc = { path = "vendor/servo_arc" }
parking_lot= "0.11.1"
[dev-dependencies]
m_lexer = "0.0.4"
[features]
serde1 = ["serde", "text-size/serde"]