-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 828 Bytes
/
Copy pathCargo.toml
File metadata and controls
27 lines (24 loc) · 828 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[workspace]
members = [".", "macros"]
[package]
name = "axum-error-object"
readme = "README.md"
description = "Provides a `Result<T>` type and related utility types that can be used to holistically provide object response errors."
documentation = "https://docs.rs/axum-error-object"
version = "0.0.5"
edition = "2024"
license = "MIT OR Apache-2.0"
repository = "https://github.com/mehcode/axum-error-object"
keywords = ["axum", "anyhow", "error"]
authors = [
"Ryan Leckey <leckey.ryan@gmail.com>",
]
[dependencies]
anyhow = "1.0.98"
axum = "0.8.3"
axum-error-object-macros = { path = "./macros", version = "0.0.4" }
serde = { version = "1.0.219", features = ["derive"] }
tracing = "0.1.41"
[dev-dependencies]
derive_more = { version = "2.0.1", features = ["display"] }
tokio = { version = "1.44.2", features = ["full"] }