-
Notifications
You must be signed in to change notification settings - Fork 349
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (30 loc) · 1.08 KB
/
Copy pathCargo.toml
File metadata and controls
35 lines (30 loc) · 1.08 KB
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
[package]
name = "utoipa-scalar"
description = "Scalar for utoipa"
version = "0.3.0"
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = ["scalar", "openapi", "documentation"]
repository = "https://github.com/juhaku/utoipa"
categories = ["web-programming"]
authors = ["Juha Kukkonen <juha7kukkonen@gmail.com>"]
rust-version.workspace = true
[package.metadata.docs.rs]
features = ["actix-web", "axum", "rocket", "vendored"]
rustdoc-args = ["--cfg", "doc_cfg"]
[features]
vendored = []
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }
utoipa = { version = "5.0.0", path = "../utoipa", default-features = false, features = [
"macros",
] }
actix-web = { version = "4", optional = true, default-features = false }
rocket = { version = "0.5", features = ["json"], optional = true }
axum = { version = "0.8.0", default-features = false, optional = true }
[dev-dependencies]
utoipa-scalar = { path = ".", features = ["actix-web", "axum", "rocket"] }
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] }