|
2 | 2 | name = "gotcha" |
3 | 3 | description = "Enhanced web framework built on top of Axum with OpenAPI, metrics, and configuration management" |
4 | 4 | edition = "2021" |
5 | | -version = "0.3.0" |
| 5 | +version = "0.4.0" |
6 | 6 | license = "MIT" |
7 | 7 | repository = "https://github.com/Kilerd/gotcha/" |
8 | 8 | # Symlinked to the repository README so the crate documentation and the landing page are the same |
@@ -35,8 +35,8 @@ task = ["dep:cron", "tokio/time"] |
35 | 35 |
|
36 | 36 | [dependencies] |
37 | 37 | async-trait = "0.1.60" |
38 | | -gotcha_macro = { version = "0.3", path = "../gotcha_macro" } |
39 | | -gotcha_core = { version = "0.3", path = "../gotcha_core", optional = true } |
| 38 | +gotcha_macro = { version = "0.4", path = "../gotcha_macro" } |
| 39 | +gotcha_core = { version = "0.4", path = "../gotcha_core", optional = true } |
40 | 40 | serde = {version = "1", features = ["derive"]} |
41 | 41 | # `rt` is needed by the message system, which is always available (it gated nothing but a |
42 | 42 | # 160-line module and this one tokio feature). |
@@ -76,7 +76,7 @@ trybuild = "1.0" |
76 | 76 | assert-json-diff = "2" |
77 | 77 | # Non-optional so trybuild-generated test crates (which derive Schematic and thus |
78 | 78 | # emit `::gotcha_core::` paths) have gotcha_core in their extern prelude. |
79 | | -gotcha_core = { version = "0.3", path = "../gotcha_core" } |
| 79 | +gotcha_core = { version = "0.4", path = "../gotcha_core" } |
80 | 80 | # So `#[tokio::main]` doc examples compile (the lib's own tokio dep is minimal). |
81 | 81 | tokio = { version = "1", features = ["macros", "rt-multi-thread"] } |
82 | 82 | futures-core = "0.3.33" |
|
0 commit comments