From 964134bf30014ed887fbdd425cfab3a3774e7376 Mon Sep 17 00:00:00 2001 From: Tommaso Allevi Date: Fri, 6 Dec 2024 17:13:27 +0100 Subject: [PATCH] Prepare for release --- axum-openapi3-derive/Cargo.lock | 77 --------------------------------- axum-openapi3-derive/Cargo.toml | 10 ++++- axum-openapi3-derive/README.md | 3 ++ 3 files changed, 12 insertions(+), 78 deletions(-) delete mode 100644 axum-openapi3-derive/Cargo.lock create mode 100644 axum-openapi3-derive/README.md diff --git a/axum-openapi3-derive/Cargo.lock b/axum-openapi3-derive/Cargo.lock deleted file mode 100644 index bfe451c..0000000 --- a/axum-openapi3-derive/Cargo.lock +++ /dev/null @@ -1,77 +0,0 @@ -# This file is automatically @generated by Cargo. -# It is not intended for manual editing. -version = 3 - -[[package]] -name = "axum-openapi-derive" -version = "0.1.0" -dependencies = [ - "http", - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "bytes" -version = "1.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "325918d6fe32f23b19878fe4b34794ae41fc19ddbe53b10571a4874d44ffd39b" - -[[package]] -name = "fnv" -version = "1.0.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" - -[[package]] -name = "http" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258" -dependencies = [ - "bytes", - "fnv", - "itoa", -] - -[[package]] -name = "itoa" -version = "1.0.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674" - -[[package]] -name = "proc-macro2" -version = "1.0.92" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0" -dependencies = [ - "unicode-ident", -] - -[[package]] -name = "quote" -version = "1.0.37" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" -dependencies = [ - "proc-macro2", -] - -[[package]] -name = "syn" -version = "2.0.90" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "919d3b74a5dd0ccd15aeb8f93e7006bd9e14c295087c9896a110f490752bcf31" -dependencies = [ - "proc-macro2", - "quote", - "unicode-ident", -] - -[[package]] -name = "unicode-ident" -version = "1.0.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83" diff --git a/axum-openapi3-derive/Cargo.toml b/axum-openapi3-derive/Cargo.toml index c39c97c..9296129 100644 --- a/axum-openapi3-derive/Cargo.toml +++ b/axum-openapi3-derive/Cargo.toml @@ -2,6 +2,14 @@ name = "axum-openapi3-derive" version = "0.1.0" edition = "2021" +description = "Facilitate the generation of OpenAPI 3.0 documentation for axum applications - derive macro" +license = "Apache-2.0" +authors = [ + "Tommaso Allevi ", +] +documentation = "https://docs.rs/axum-openapi3-derive" +repository = "https://github.com/oramasearch/axum-openapi3" +homepage = "https://crates.io/crates/axum-openapi3-derive" [lib] proc-macro = true @@ -10,4 +18,4 @@ proc-macro = true syn = { version = "*", features = ["extra-traits", "full"] } quote = "*" proc-macro2 = "*" -http = "1.1.0" \ No newline at end of file +http = "1" diff --git a/axum-openapi3-derive/README.md b/axum-openapi3-derive/README.md new file mode 100644 index 0000000..f6d4474 --- /dev/null +++ b/axum-openapi3-derive/README.md @@ -0,0 +1,3 @@ +# Axum OpenAPI 3 Derive + +See the [main crate](https://crates.io/crates/axum-openapi3) for more information.