1[package]2name = "jrsonnet-interner"3description = "Jrsonnet string interning"4version.workspace = true5authors = ["Yaroslav Bolyukin <iam@lach.pw>"]6license = "MIT"7edition = "2021"89[features]10default = []1112structdump = ["dep:structdump"]13141516serde = ["dep:serde"]1718[dependencies]19jrsonnet-gcmodule = { version = "0.3.4" }2021serde = { version = "1.0", optional = true }22structdump = { version = "0.2.0", optional = true }2324rustc-hash = "1.1"25hashbrown = { version = "0.12.3", features = ["inline-more"] }