File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11[workspace ]
22resolver = " 2"
33members = [" crates/*" , " examples/*" ]
4+
5+ [workspace .dependencies ]
6+ vespera_core = { path = " crates/vespera_core" , version = " 0.1.0" }
7+ vespera_macro = { path = " crates/vespera_macro" , version = " 0.1.0" }
Original file line number Diff line number Diff line change 22name = " vespera"
33version = " 0.1.0"
44edition = " 2024"
5+ description = " A fully automated OpenAPI engine for Axum with zero-config route and schema discovery"
6+ license = " Apache-2.0"
7+ repository = " https://github.com/dev-five-git/vespera"
58
69[dependencies ]
7- vespera_core = { path = " ../vespera_core " }
8- vespera-macro = { path = " ../vespera_macro " , package = " vespera_macro " }
10+ vespera_core = { workspace = true }
11+ vespera_macro = { workspace = true }
912axum = " 0.8"
Original file line number Diff line number Diff line change 22name = " vespera_core"
33version = " 0.1.0"
44edition = " 2024"
5+ description = " Core types and utilities for Vespera"
6+ license = " Apache-2.0"
7+ repository = " https://github.com/dev-five-git/vespera"
58
69[dependencies ]
710serde = { version = " 1.0" , features = [" derive" ] }
Original file line number Diff line number Diff line change 22name = " vespera_macro"
33version = " 0.1.0"
44edition = " 2024"
5+ description = " Procedural macros for Vespera - automatic route discovery and OpenAPI generation"
6+ license = " Apache-2.0"
7+ repository = " https://github.com/dev-five-git/vespera"
58
69[lib ]
710proc-macro = true
@@ -10,7 +13,7 @@ proc-macro = true
1013quote = " 1"
1114syn = { version = " 2" , features = [" full" ] }
1215proc-macro2 = " 1"
13- vespera_core = { path = " ../vespera_core " }
16+ vespera_core = { workspace = true }
1417serde = { version = " 1.0" , features = [" derive" ] }
1518serde_json = " 1.0"
1619anyhow = " 1.0"
You can’t perform that action at this time.
0 commit comments