diff options
| author | rtkay123 <dev@kanjala.com> | 2026-04-03 14:43:54 +0200 |
|---|---|---|
| committer | rtkay123 <dev@kanjala.com> | 2026-04-03 14:43:54 +0200 |
| commit | 41d90f42c37df06dabfd717d19f3dc72b5ba2d11 (patch) | |
| tree | 2da259062cbdb459a2958d0be46eed20642b355a /crates/api-base/Cargo.toml | |
| parent | 898a2966975c7397e35d8df6b72df42147bf18bd (diff) | |
| download | sellershut-41d90f42c37df06dabfd717d19f3dc72b5ba2d11.tar.bz2 sellershut-41d90f42c37df06dabfd717d19f3dc72b5ba2d11.zip | |
feat: openapi
Diffstat (limited to 'crates/api-base/Cargo.toml')
| -rw-r--r-- | crates/api-base/Cargo.toml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/crates/api-base/Cargo.toml b/crates/api-base/Cargo.toml new file mode 100644 index 0000000..e15c19b --- /dev/null +++ b/crates/api-base/Cargo.toml @@ -0,0 +1,17 @@ +[package] +name = "api-base" +version = "0.0.0" +edition = "2024" +license.workspace = true +readme.workspace = true +documentation.workspace = true +homepage.workspace = true + +[dependencies] +axum = { workspace = true, optional = true } +serde.workspace = true +utoipa = { workspace = true, optional = true } + +[features] +axum = ["dep:axum"] +utoipa = ["dep:utoipa", "serde/derive", "axum"] |
