aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
authorrtkay123 <dev@kanjala.com>2026-03-29 16:15:54 +0200
committerrtkay123 <dev@kanjala.com>2026-03-29 16:15:54 +0200
commit57c4a5251c30d3dc2b78059fd208d8948d999056 (patch)
tree43d86334ad8c08305b9cadda3a524016e0ea4cfc /Cargo.toml
parentc02a5a74d637bab34dc85a0f8a6cfd2a69fd6597 (diff)
downloadwarden-57c4a5251c30d3dc2b78059fd208d8948d999056.tar.bz2
warden-57c4a5251c30d3dc2b78059fd208d8948d999056.zip
refactor: move config to core
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml10
1 files changed, 9 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 5446260..2bdad55 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,20 +1,28 @@
[workspace]
resolver = "3"
-members = ["warden"]
+members = ["warden", "lib/*"]
[workspace.package]
license = "AGPL-3.0-only"
readme = "README.md"
documentation = "https://books.kanjala.com/warden"
homepage = "https://git.kanjala.com/warden"
+publish = false
[workspace.dependencies]
+async-trait = "0.1.89"
+clap = "4.6.0"
+jsonschema = "0.45.0"
+secrecy = { version = "0.10.3", features = ["serde"] }
serde = "1.0.228"
serde_json = "1.0.149"
+thiserror = "2.0.18"
time = { version = "0.3.47", default-features = false }
tracing = "0.1.44"
+tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
url = "2.5.8"
uuid = "1.23.0"
+warden-core = { path = "lib/warden-core" }
[workspace.dependencies.sqlx]
version = "0.8.6"