1
0
Fork 0
mirror of https://codeberg.org/icewind/bitbuffer.git synced 2026-06-03 16:44:06 +02:00

prepare for 0.11

This commit is contained in:
Robin Appelman 2023-10-09 21:51:46 +02:00
commit 417e8c2b96
4 changed files with 74 additions and 92 deletions

View file

@ -1,25 +1,25 @@
[package]
name = "bitbuffer"
version = "0.10.9"
version = "0.11.0"
authors = ["Robin Appelman <robin@icewind.nl>"]
edition = "2021"
description = "Reading bit sequences from a byte slice"
license = "MIT OR Apache-2.0"
repository = "https://github.com/icewind1991/bitbuffer"
rust-version = "1.56.0"
rust-version = "1.65.0"
[dependencies]
num-traits = "0.2"
err-derive = "0.3"
bitbuffer_derive = { version = "0.10", path = "bitbuffer_derive" }
memchr = "2"
serde = { version = "1", features = ["derive"], optional = true }
schemars = { version = "0.8", optional = true }
num-traits = "0.2.17"
thiserror = "1.0.49"
bitbuffer_derive = { version = "0.11.0", path = "bitbuffer_derive" }
memchr = "2.6.4"
serde = { version = "1.0.188", features = ["derive"], optional = true }
schemars = { version = "0.8.15", optional = true }
[dev-dependencies]
maplit = "1"
iai = "0.1"
serde_json = "1"
maplit = "1.0.2"
iai = "0.1.1"
serde_json = "1.0.107"
[[bench]]
name = "bench"