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

Serializable trees (#11)

Clean up #4. Now everything is moved to the new design.
This commit is contained in:
Stu 2021-01-27 11:44:46 +01:00 committed by GitHub
parent 91b68c9a23
commit 3dbfe22bed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 711 additions and 93 deletions

View file

@ -8,15 +8,26 @@ 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"
servo_arc = { path = "vendor/servo_arc" }
parking_lot= "0.11.1"
[dependencies.serde]
version = "1.0"
optional = true
default-features = false
features = ["derive"]
[dev-dependencies]
m_lexer = "0.0.4"
serde_json = "1.0.61"
serde_test = "1.0.119"
[features]
serde1 = ["serde", "text-size/serde"]
default = []
serde1 = ["serde", "servo_arc/servo"]
[package.metadata.docs.rs]
features = ["serde1"]