git.delta.rocks / jrsonnet / refs/commits / dbbcbc4becf1

difftreelog

source

crates/jrsonnet-interner/Cargo.toml675 Bsourcehistory
1[package]2name = "jrsonnet-interner"3description = "Jrsonnet string interning"4version.workspace = true5repository.workspace = true6authors = ["Yaroslav Bolyukin <iam@lach.pw>"]7license = "MIT"8edition = "2021"910[features]11default = []12# Implement value serialization using structdump13structdump = ["dep:structdump"]14# Implement value serialization using serde15#16# Warning: serialized values won't be deduplicated17serde = ["dep:serde"]1819[dependencies]20jrsonnet-gcmodule.workspace = true2122serde = { workspace = true, optional = true }23structdump = { workspace = true, optional = true }2425rustc-hash.workspace = true26hashbrown = { workspace = true, features = ["inline-more"] }