diff options
| author | rtkay123 <dev@kanjala.com> | 2026-03-29 16:36:13 +0200 |
|---|---|---|
| committer | rtkay123 <dev@kanjala.com> | 2026-03-29 16:36:13 +0200 |
| commit | ff3b9fbaf400c344cae67ef9bdc9ba7d5f27b976 (patch) | |
| tree | ce417252c6ea56c540e4c78f43c9ad4af9b76c64 /lib/api-config/Cargo.toml | |
| parent | 57c4a5251c30d3dc2b78059fd208d8948d999056 (diff) | |
| download | warden-ff3b9fbaf400c344cae67ef9bdc9ba7d5f27b976.tar.bz2 warden-ff3b9fbaf400c344cae67ef9bdc9ba7d5f27b976.zip | |
refactor: move state to core
Diffstat (limited to 'lib/api-config/Cargo.toml')
| -rw-r--r-- | lib/api-config/Cargo.toml | 26 |
1 files changed, 26 insertions, 0 deletions
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"] |
