1
0
Fork 0
mirror of https://codeberg.org/icewind/bitbuffer.git synced 2026-06-04 00:54:07 +02:00

add schemars_1 feature

This commit is contained in:
Robin Appelman 2025-09-16 23:11:07 +02:00
commit 25a28172ad
5 changed files with 74 additions and 8 deletions

View file

@ -1,12 +1,12 @@
[package]
name = "bitbuffer"
version = "0.11.2"
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.70.0"
rust-version = "1.74.0"
[dependencies]
num-traits = "0.2.19"
@ -15,6 +15,7 @@ bitbuffer_derive = { version = "0.11.0", path = "bitbuffer_derive" }
memchr = "2.7.4"
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"