mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-08-07 16:13:06 -07:00
26 lines
573 B
TOML
26 lines
573 B
TOML
[package]
|
|
name = "brk_byteview"
|
|
description = "BRK-maintained fork of byteview, a thin immutable zero-copy byte slice"
|
|
license = "MIT OR Apache-2.0"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
readme = "README.md"
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
categories = ["data-structures"]
|
|
keywords = ["german-string", "string-view", "byte-slice"]
|
|
|
|
[lib]
|
|
name = "byteview"
|
|
path = "src/lib.rs"
|
|
|
|
[features]
|
|
default = []
|
|
serde = ["dep:serde"]
|
|
|
|
[dependencies]
|
|
serde = { workspace = true, optional = true }
|
|
|
|
[dev-dependencies]
|
|
serde_json = { workspace = true }
|