31 lines
657 B
TOML
31 lines
657 B
TOML
[package]
|
|
name = "re_string_interner"
|
|
authors.workspace = true
|
|
description = "Yet another string interning library"
|
|
edition.workspace = true
|
|
homepage.workspace = true
|
|
include.workspace = true
|
|
license.workspace = true
|
|
publish = true
|
|
readme = "README.md"
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
version.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
|
|
|
|
[dependencies]
|
|
re_byte_size.workspace = true
|
|
|
|
ahash.workspace = true
|
|
nohash-hasher.workspace = true
|
|
parking_lot.workspace = true
|
|
paste.workspace = true
|
|
serde = { workspace = true, features = ["serde_derive"] }
|
|
static_assertions.workspace = true
|