diff --git a/core/Cargo.toml b/core/Cargo.toml index 6678e3d..2da8ae0 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oasgen-core" -version = "0.19.0" +version = "0.20.0" edition = "2021" authors = ["Kurt Wolf "] description = "Dependency of oasgen. Generates OpenAPI 3.0 spec based on Rust code. Works with actix-web, but architected to easily extend to other frameworks (or no framework)." diff --git a/macro/Cargo.toml b/macro/Cargo.toml index 03e1f4a..2ed4936 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oasgen-macro" -version = "0.19.0" +version = "0.20.0" edition = "2021" authors = ["Kurt Wolf "] description = "Dependency of oasgen. Generates OpenAPI 3.0 spec based on Rust code. Works with actix-web, but architected to easily extend to other frameworks (or no framework)." @@ -18,7 +18,7 @@ proc-macro = true syn = { version = "2", features = ["full"] } quote = "1.0" proc-macro2 = "1.0.64" -oasgen-core = { path = "../core" , version = "0.19.0"} +oasgen-core = { path = "../core" , version = "0.20.0"} structmeta = "0.2.0" serde_derive_internals = "0.29.0" diff --git a/oasgen/Cargo.toml b/oasgen/Cargo.toml index c3551df..dc80010 100644 --- a/oasgen/Cargo.toml +++ b/oasgen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oasgen" -version = "0.19.0" +version = "0.20.0" edition = "2021" authors = ["Kurt Wolf "] description = "Generates OpenAPI 3.0 spec based on Rust code. Works with axum, actix-web, or independent of a web framework." @@ -45,8 +45,8 @@ futures = "0.3.28" http = "1.0.0" indexmap = "2" openapiv3-extended = { version = "6" } -oasgen-core = { path = "../core", version = "0.19.0"} -oasgen-macro = { path = "../macro", version = "0.19.0"} +oasgen-core = { path = "../core", version = "0.20.0"} +oasgen-macro = { path = "../macro", version = "0.20.0"} serde = { version = "1.0.171", features = ["derive"] } serde_json = "1.0.100" serde_yaml = "0.9.22"