Skip to content

Commit

Permalink
editoast: add 'tracing' feature for 'axum'
Browse files Browse the repository at this point in the history
In reality, the `tracing` feature was already pulled by some other
dependency in our dependencies' tree, but yet, it's more correct
that we define it since we want to use it.

Signed-off-by: Jean SIMARD <[email protected]>
  • Loading branch information
woshilapin committed Sep 11, 2024
1 parent e89dade commit fe7aa7a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion editoast/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ uuid = { version = "1.10.0", features = ["serde", "v4"] }
# For batch dependency updates, see editoast/README.md

async-trait = "0.1.82"
axum = { version = "0.7.5", default-features = false, features = ["multipart"] }
axum = { version = "0.7.5", default-features = false, features = ["multipart", "tracing"] }
axum-extra = { version = "0.9.3", default-features = false, features = [
"typed-header",
] }
Expand Down Expand Up @@ -181,6 +181,7 @@ async-std = { version = "1.12.0", features = ["attributes", "tokio1"] }
axum = { version = "0.7.5", default-features = false, features = [
"macros",
"multipart",
"tracing",
] }
editoast_authz = { workspace = true, features = ["fixtures"] }
editoast_models = { workspace = true, features = ["testing"] }
Expand Down

0 comments on commit fe7aa7a

Please sign in to comment.