From ff3b9fbaf400c344cae67ef9bdc9ba7d5f27b976 Mon Sep 17 00:00:00 2001 From: rtkay123 Date: Sun, 29 Mar 2026 16:36:13 +0200 Subject: refactor: move state to core --- lib/api-config/Cargo.toml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 lib/api-config/Cargo.toml (limited to 'lib/api-config/Cargo.toml') diff --git a/lib/api-config/Cargo.toml b/lib/api-config/Cargo.toml new file mode 100644 index 0000000..ec31262 --- /dev/null +++ b/lib/api-config/Cargo.toml @@ -0,0 +1,26 @@ +[package] +name = "api-config" +version = "0.1.0" +edition = "2024" +license.workspace = true +readme.workspace = true +documentation.workspace = true +homepage.workspace = true +publish.workspace = true + +[dependencies] +serde.workspace = true +serde_json.workspace = true +thiserror.workspace = true +time = { workspace = true, features = ["serde"] } +tracing.workspace = true +utoipa = { workspace = true, optional = true } +warden-core.workspace = true + +[features] +default = [] +utoipa = ["dep:utoipa", "utoipa/time"] + +[dependencies.sqlx] +workspace = true +features = ["json", "runtime-tokio-rustls", "time"] -- cgit v1.2.3