-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
33 lines (29 loc) · 1.03 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
[workspace]
members = ["utoipauto", "utoipauto-core", "utoipauto-macro"]
resolver = "2"
[workspace.package]
authors = ["ProbablyClem", "RxDiscovery", "DenuxPlays"]
version = "0.2.0"
edition = "2021"
keywords = ["utoipa", "openapi", "swagger", "path", "auto"]
description = "Rust Macros to automate the addition of Paths/Schemas to Utoipa crate, simulating Reflection during the compilation phase"
categories = [
"parsing",
"development-tools::procedural-macro-helpers",
"web-programming",
]
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/ProbablyClem/utoipauto"
homepage = "https://github.com/ProbablyClem/utoipauto"
rust-version = "1.75.0"
[workspace.dependencies]
# Core dependencies
utoipauto-core = { path = "utoipauto-core", version = "0.2" }
utoipauto-macro = { path = "utoipauto-macro", version = "0.2" }
# Utoipa
utoipa = { version = "5.0.0", features = ["preserve_path_order"] }
# Macro dependencies
quote = "1.0.36"
syn = { version = "2.0.74", features = ["full"] }
proc-macro2 = "1.0.86"