Skip to content

Commit

Permalink
Release v9.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
aurexav committed Jan 3, 2025
1 parent 3388a5f commit 2436a35
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### v9.1.1
- Integrate `serde_bytes`.

### v9.1.0
- Use reference instead of value in `Hexify` trait and related serialize functions.

Expand Down
12 changes: 11 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 11 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ authors = ["Xavier Lau <x@acg.box>"]
categories = [
"algorithms",
"encoding",
"parsing",
"no-std",
"parsing",
"wasm",
]
description = "A collection of Array/Bytes/Hex utilities with full No-STD compatibility."
Expand All @@ -21,15 +21,22 @@ license = "Apache-2.0/GPL-3.0"
name = "array-bytes"
readme = "README.md"
repository = "https://github.com/hack-ink/array-bytes"
version = "9.1.0"
version = "9.1.1"

[profile.ci-dev]
incremental = false
inherits = "dev"

[features]
serde = [
"dep:serde",
"serde_bytes",
]

[dependencies]
serde = { version = "1.0", optional = true, default-features = false }
smallvec = { version = "1.13" }
serde = { version = "1.0", optional = true, default-features = false }
serde_bytes = { version = "0.11", optional = true, default-features = false, features = ["alloc"] }
smallvec = { version = "1.13" }

[dev-dependencies]
const-hex = { version = "1.14" }
Expand Down
2 changes: 2 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ mod prelude {
#[cfg(test)] pub use test::*;
}

#[cfg(feature = "serde")] pub use serde_bytes;

#[allow(missing_docs)]
pub type Result<T, E = Error> = core::result::Result<T, E>;

Expand Down

0 comments on commit 2436a35

Please sign in to comment.