Skip to content

Commit ded485f

Browse files
committed
Fix meta
1 parent 6c26275 commit ded485f

4 files changed

Lines changed: 16 additions & 3 deletions

File tree

Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
[workspace]
22
resolver = "2"
33
members = ["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" }

crates/vespera/Cargo.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,11 @@
22
name = "vespera"
33
version = "0.1.0"
44
edition = "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 }
912
axum = "0.8"

crates/vespera_core/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
name = "vespera_core"
33
version = "0.1.0"
44
edition = "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]
710
serde = { version = "1.0", features = ["derive"] }

crates/vespera_macro/Cargo.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
name = "vespera_macro"
33
version = "0.1.0"
44
edition = "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]
710
proc-macro = true
@@ -10,7 +13,7 @@ proc-macro = true
1013
quote = "1"
1114
syn = { version = "2", features = ["full"] }
1215
proc-macro2 = "1"
13-
vespera_core = { path = "../vespera_core" }
16+
vespera_core = { workspace = true }
1417
serde = { version = "1.0", features = ["derive"] }
1518
serde_json = "1.0"
1619
anyhow = "1.0"

0 commit comments

Comments
 (0)