-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (40 loc) · 1018 Bytes
/
Copy pathCargo.toml
File metadata and controls
49 lines (40 loc) · 1018 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "vlen"
version = "0.3.0"
edition = "2021"
authors = ["Harrison Chin <git@harry.aleeas.com>"]
description = "High-performance variable-length integer encoding with SIMD optimizations, embedded support, and enhanced functionality"
license = "MPL-2.0"
repository = "https://github.com/harrychin/vlen"
keywords = ["encoding", "integer", "varint", "no-std", "simd"]
categories = ["encoding", "compression"]
[lib]
name = "vlen"
path = "vlen/mod.rs"
[[bench]]
name = "encode_decode"
harness = false
[[bench]]
name = "leb128_comparison"
harness = false
[[bench]]
name = "simd_benchmarks"
harness = false
[dependencies]
serde = { version = "1.0", optional = true }
base64 = { version = "0.22", optional = true }
konst = "0.4"
[dev-dependencies]
criterion = "0.7"
integer-encoding = "4.0"
arbtest = "0.3"
rstest = "0.26"
serde_json = "1.0"
[features]
default = []
alloc = []
serde = ["dep:serde", "dep:base64"]
simd = []
full = ["alloc", "serde", "simd"]
[package.metadata.docs.rs]
all-features = true