-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (33 loc) · 1.09 KB
/
Cargo.toml
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "axum-openapi3"
version = "0.1.0"
edition = "2021"
description = "Facilitate the generation of OpenAPI 3.0 documentation for axum applications."
license = "Apache-2.0"
authors = [
"Tommaso Allevi <[email protected]>",
]
documentation = "https://docs.rs/axum-openapi3"
repository = "https://github.com/oramasearch/axum-openapi3"
homepage = "https://crates.io/crates/axum-openapi3"
[lib]
[dependencies]
axum-openapi3-derive = { optional = true, path = "axum-openapi3-derive"}
axum = { version = "0.7.6", default-features = false }
utoipa = { version = "5", features = ["debug"] }
once_cell = "1.8.0"
serde = { version = "1.0.214", default-features = false }
[dev-dependencies]
axum = { version = "0.7.6", features = ["macros"] }
tower-http = { version = "0.6.1", features = ["trace", "cors"] }
serde = { version = "1.0.214", features = ["derive"] }
tokio = { version = "1", features = ["rt", "rt-multi-thread", "full", "sync"] }
anyhow = "1.0.91"
serde_json = "1.0.132"
[features]
default = ["derive"]
derive = ["axum-openapi3-derive"]
[workspace]
members = [
"axum-openapi3-derive",
]