Skip to content

Commit

Permalink
fix: use extra-traits feature with syn
Browse files Browse the repository at this point in the history
  • Loading branch information
matteopolak committed Aug 30, 2024
1 parent af7d7a3 commit 2c4df83
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "axum-codec"
version = "0.0.12"
version = "0.0.13"
edition = "2021"
description = "A multi-codec extractor and response writer for Axum"
license = "MIT OR Apache-2.0"
Expand All @@ -16,7 +16,7 @@ members = ["macros", ".", "examples/*"]
[dependencies]
aide = { version = "0.13", optional = true, default-features = false, features = ["axum"] }
axum = { version = "0.7", default-features = false }
axum-codec-macros = { path = "macros", version = "0.0.8" }
axum-codec-macros = { path = "macros", version = "0.0.9" }
bincode = { version = "2.0.0-rc.3", default-features = false, features = ["std"], optional = true }
# 0.6.3 added the #[bitcode(crate = "...")] option
bitcode = { version = "0.6.3", default-features = false, features = ["std"], optional = true }
Expand Down
4 changes: 2 additions & 2 deletions macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "axum-codec-macros"
version = "0.0.8"
version = "0.0.9"
edition = "2021"
description = "Procedural macros for axum-codec"
license = "MIT OR Apache-2.0"
Expand All @@ -13,7 +13,7 @@ proc-macro = true
[dependencies]
proc-macro2 = "1"
quote = "1"
syn = { version = "2", optional = true }
syn = { version = "2", optional = true, features = ["extra-traits"] }

[features]
default = ["debug"]
Expand Down

0 comments on commit 2c4df83

Please sign in to comment.