-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (28 loc) · 774 Bytes
/
Cargo.toml
File metadata and controls
33 lines (28 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "byteview"
description = "Thin, immutable zero-copy slice type"
license = "MIT OR Apache-2.0"
version = "0.10.1"
edition = "2021"
rust-version = "1.87"
readme = "README.md"
include = ["src/**/*", "LICENSE-APACHE", "LICENSE-MIT", "README.md"]
repository = "https://github.com/fjall-rs/byteview"
categories = ["data-structures"]
keywords = ["german-string", "string-view", "byte-slice"]
[lib]
[features]
default = []
serde = ["dep:serde"]
[dependencies]
serde = { version = "1", optional = true }
[dev-dependencies]
bytes = "1"
criterion = { version = "0.5", features = ["html_reports"] }
nanoid = "0.4.0"
rand = "0.9.2"
rkyv = { version = "0.8.15", features = ["bytecheck", "unaligned"] }
serde_json = "1.0.149"
[[bench]]
name = "bench"
harness = false