diff --git a/Cargo.lock b/Cargo.lock index fcfb27c..0ae431c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -369,12 +369,10 @@ dependencies = [ "serde", "serde_json", "serde_with", - "sqlx", "tokio", "toml", "tonic", "tonic-build", - "tonic-reflection", "tracing", "tracing-subscriber", ] @@ -2079,13 +2077,8 @@ dependencies = [ "chrono", "clap", "common", - "console", - "crossterm", - "dialoguer", - "dirs", "dotenvy", "prost", - "ratatui", "serde", "serde_json", "serde_with", diff --git a/client/Cargo.toml b/client/Cargo.toml index c5bc468..11f0a9a 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -18,11 +18,9 @@ ratatui = "0.29.0" serde = { version = "1.0.217", features = ["derive"] } serde_json = "1.0.138" serde_with = "3.12.0" -sqlx = { version = "0.8.3", features = ["chrono", "postgres", "runtime-tokio", "runtime-tokio-native-tls", "time"] } tokio = { version = "1.43.0", features = ["full", "macros"] } toml = "0.8.20" tonic = "0.12.3" tonic-build = "0.12.3" -tonic-reflection = "0.12.3" tracing = "0.1.41" tracing-subscriber = "0.3.19" diff --git a/server/Cargo.toml b/server/Cargo.toml index 1f74ba2..48f8b06 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -8,13 +8,8 @@ common = { path = "../common" } chrono = { version = "0.4.39", features = ["serde"] } clap = { version = "4.5.29", features = ["derive"] } -console = "0.15.10" -crossterm = "0.28.1" -dialoguer = "0.11.0" -dirs = "6.0.0" dotenvy = "0.15.7" prost = "0.13.5" -ratatui = "0.29.0" serde = { version = "1.0.217", features = ["derive"] } serde_json = "1.0.138" serde_with = "3.12.0"