bittern 1.0.0

A reference-counted arena for interning and deduplicating data
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.71.1"
name = "bittern"
version = "1.0.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A reference-counted arena for interning and deduplicating data"
readme = "README.md"
keywords = [
    "arena",
    "rc",
    "intern",
    "interner",
    "symbol",
]
license = "MIT"
repository = "https://github.com/mighto360/bittern"

[features]
compile-time-rng = ["ahash/compile-time-rng"]
default = [
    "runtime-rng",
    "derive",
    "secondary",
]
derive = ["dep:bittern_derive"]
runtime-rng = ["ahash/runtime-rng"]
secondary = []

[lib]
name = "bittern"
path = "src/lib.rs"

[[example]]
name = "parsing"
path = "examples/parsing.rs"
required-features = ["derive"]

[[example]]
name = "primary_key"
path = "examples/primary_key.rs"
required-features = ["derive"]

[[example]]
name = "str_interning"
path = "examples/str_interning.rs"

[[bench]]
name = "str_interning"
path = "benches/str_interning.rs"
harness = false

[dependencies.ahash]
version = "0.8.12"
default-features = false

[dependencies.bittern_derive]
version = "1.0.0"
optional = true

[dependencies.bumpalo]
version = "3.19.1"
default-features = false

[dependencies.hashbrown]
version = "0.16.1"
features = [
    "inline-more",
    "raw-entry",
]
default-features = false

[dev-dependencies.divan]
version = "0.1.16"