diff options
| author | rtkay123 <dev@kanjala.com> | 2026-03-29 16:15:54 +0200 |
|---|---|---|
| committer | rtkay123 <dev@kanjala.com> | 2026-03-29 16:15:54 +0200 |
| commit | 57c4a5251c30d3dc2b78059fd208d8948d999056 (patch) | |
| tree | 43d86334ad8c08305b9cadda3a524016e0ea4cfc /lib/warden-core/Cargo.toml | |
| parent | c02a5a74d637bab34dc85a0f8a6cfd2a69fd6597 (diff) | |
| download | warden-57c4a5251c30d3dc2b78059fd208d8948d999056.tar.bz2 warden-57c4a5251c30d3dc2b78059fd208d8948d999056.zip | |
refactor: move config to core
Diffstat (limited to 'lib/warden-core/Cargo.toml')
| -rw-r--r-- | lib/warden-core/Cargo.toml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/warden-core/Cargo.toml b/lib/warden-core/Cargo.toml new file mode 100644 index 0000000..1f92e87 --- /dev/null +++ b/lib/warden-core/Cargo.toml @@ -0,0 +1,21 @@ +[package] +name = "warden-core" +version = "0.1.0" +edition = "2024" +license.workspace = true +readme.workspace = true +documentation.workspace = true +homepage.workspace = true +publish.workspace = true + +[dependencies] +clap = { workspace = true, features = ["derive", "env"] } +serde = { workspace = true, features = ["derive"] } +thiserror.workspace = true +tracing.workspace = true +tracing-subscriber = { version = "0.3.23", features = ["env-filter"] } +url.workspace = true + +[dependencies.sqlx] +workspace = true +features = ["json", "runtime-tokio-rustls", "time"] |
