Skip to content

Commit 12bdea4

Browse files
committed
chore: use bitcode 0.6.3
1 parent e7ca48d commit 12bdea4

File tree

7 files changed

+159
-79
lines changed

7 files changed

+159
-79
lines changed

Cargo.lock

Lines changed: 47 additions & 33 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "axum-codec"
3-
version = "0.0.10"
3+
version = "0.0.11"
44
edition = "2021"
55
description = "A multi-codec extractor and response writer for Axum"
66
license = "MIT OR Apache-2.0"
@@ -16,9 +16,9 @@ members = ["macros", ".", "examples/*"]
1616
[dependencies]
1717
aide = { version = "0.13", optional = true, default-features = false, features = ["axum"] }
1818
axum = { version = "0.7", default-features = false }
19-
axum-codec-macros = { path = "macros", version = "0.0.7" }
19+
axum-codec-macros = { path = "macros", version = "0.0.8" }
2020
bincode = { version = "2.0.0-rc.3", default-features = false, features = ["std"], optional = true }
21-
bitcode = { version = "0.6", default-features = false, optional = true }
21+
bitcode = { version = "0.6.3", default-features = false, features = ["std"], optional = true }
2222
ciborium = { version = "0.2", optional = true }
2323
mime = "0.3"
2424
rmp-serde = { version= "1", optional = true }

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,8 @@ use axum_codec::{
4444
// #[serde(crate = "...")]
4545
// #[bincode(crate = "...")]
4646
//
47-
// NOTE: `bitcode` does not support `#[bitcode(crate = "...)]` yet,
47+
// NOTE: `validator` does not support `#[validator(crate = "...)]` yet,
4848
// so the dependency must be specified in your `Cargo.toml` if enabled (and using this macro).
49-
// Same goes for `validator`.
5049
#[axum_codec::apply(encode, decode)]
5150
struct User {
5251
name: String,

examples/basic/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ axum = "0.7"
88
serde = { version = "1", features = ["derive", "rc"] }
99
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
1010
axum-codec = { path = "../..", features = ["full-codecs", "macros", "validator"] }
11-
bitcode = "0.6"
1211
bincode = "2.0.0-rc.3"
1312
validator = { version = "0.18.1", features = ["derive"] }
1413

macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "axum-codec-macros"
3-
version = "0.0.7"
3+
version = "0.0.8"
44
edition = "2021"
55
description = "Procedural macros for axum-codec"
66
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)