mirror of
https://github.com/RGBCube/cstree
synced 2025-07-27 17:17:45 +00:00
Feature gate triomphe/serde
behind cstree/serialize
(#58)
This commit is contained in:
parent
574adbde8f
commit
2173cc3c96
1 changed files with 2 additions and 2 deletions
|
@ -17,7 +17,7 @@ fxhash = "0.2.1"
|
||||||
parking_lot = "0.12.1"
|
parking_lot = "0.12.1"
|
||||||
|
|
||||||
# Arc
|
# Arc
|
||||||
triomphe = "0.1.7"
|
triomphe = { version = "0.1.7", default-features = false, features = ["stable_deref_trait", "std"] }
|
||||||
sptr = "0.3.2"
|
sptr = "0.3.2"
|
||||||
|
|
||||||
# Default Interner
|
# Default Interner
|
||||||
|
@ -61,7 +61,7 @@ default = []
|
||||||
# Derive macro for `Syntax`
|
# Derive macro for `Syntax`
|
||||||
derive = ["dep:cstree_derive"]
|
derive = ["dep:cstree_derive"]
|
||||||
# Implementations of `serde::{De,}Serialize` for CSTrees.
|
# Implementations of `serde::{De,}Serialize` for CSTrees.
|
||||||
serialize = ["serde", "lasso?/serialize"]
|
serialize = ["serde", "lasso?/serialize", "triomphe/serde"]
|
||||||
# Interoperability with the `lasso` interning crate.
|
# Interoperability with the `lasso` interning crate.
|
||||||
# When enabled, `cstree`'s default interners will use `lasso` internally, too.
|
# When enabled, `cstree`'s default interners will use `lasso` internally, too.
|
||||||
lasso_compat = ["lasso"]
|
lasso_compat = ["lasso"]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue