mirror of
https://github.com/tlsnotary/tlsn-utils.git
synced 2026-01-08 04:13:59 -05:00
26 lines
551 B
TOML
26 lines
551 B
TOML
[package]
|
|
name = "rangeset"
|
|
version = "0.4.0"
|
|
edition = "2024"
|
|
authors = ["TLSNotary Contributors"]
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/tlsnotary/tlsn-utils"
|
|
description = "Integer collection backed by ranges with set operation support."
|
|
keywords = ["range", "set"]
|
|
|
|
[features]
|
|
default = ["std"]
|
|
alloc = []
|
|
std = ["alloc"]
|
|
serde = ["dep:serde"]
|
|
|
|
[dependencies]
|
|
serde = { workspace = true, optional = true, features = ["derive"] }
|
|
|
|
[dev-dependencies]
|
|
criterion = { version = "0.5" }
|
|
|
|
[[bench]]
|
|
name = "range"
|
|
harness = false
|