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 = []1213structdump = ["dep:structdump"]14151617serde = ["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"] }