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

difftreelog

source

crates/jrsonnet-interner/Cargo.toml647 Bsourcehistory
1[package]2name = "jrsonnet-interner"3description = "Jrsonnet string interning"4version.workspace = true5authors = ["Yaroslav Bolyukin <iam@lach.pw>"]6license = "MIT"7edition = "2021"89[features]10default = []11# Implement value serialization using structdump12structdump = ["dep:structdump"]13# Implement value serialization using serde14#15# Warning: serialized values won't be deduplicated16serde = ["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"] }