mirror of
https://codeberg.org/icewind/bitbuffer.git
synced 2026-06-03 08:34:07 +02:00
35 lines
813 B
TOML
35 lines
813 B
TOML
[package]
|
|
name = "bitbuffer"
|
|
version = "0.11.3"
|
|
authors = ["Robin Appelman <robin@icewind.nl>"]
|
|
edition = "2021"
|
|
description = "Reading bit sequences from a byte slice"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://codeberg.org/icewind/bitbuffer"
|
|
rust-version = "1.74.0"
|
|
|
|
[dependencies]
|
|
num-traits = "0.2.19"
|
|
thiserror = "2.0.11"
|
|
bitbuffer_derive = { version = "0.11.0", path = "bitbuffer_derive" }
|
|
serde = { version = "1.0.218", features = ["derive"], optional = true }
|
|
schemars = { version = "0.8.21", optional = true }
|
|
schemars_1 = { package = "schemars", version = "1.0.4", optional = true }
|
|
|
|
[dev-dependencies]
|
|
maplit = "1.0.2"
|
|
iai-callgrind = "0.15.2"
|
|
serde_json = "1.0.139"
|
|
|
|
[profile.bench]
|
|
debug = true
|
|
|
|
[[bench]]
|
|
name = "read"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "write"
|
|
harness = false
|
|
|
|
[workspace]
|