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

difftreelog

source

crates/jrsonnet-interner/Cargo.toml669 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 = { version = "0.2.0", optional = true }2425rustc-hash = "1.1"26hashbrown = { version = "0.13.2", features = ["inline-more"] }