[package] name = "syntaxis-dashboard" version.workspace = true edition.workspace = true rust-version.workspace = true authors.workspace = true license.workspace = true repository.workspace = true description = "DEPRECATED: Web dashboard for syntaxis management. Use dashboard-client (Leptos WASM) instead." # DEPRECATION NOTICE: # This crate is deprecated in favor of the new Leptos CSR dashboard (dashboard-client). # # Replaced by: # - dashboard-client: Modern WASM-based CSR dashboard built with Leptos # - Advantages: Better performance, real-time updates, smaller bundle, single-page app # # This crate is kept for reference and backwards compatibility only. # New deployments should use the Leptos dashboard instead. # See: core/crates/client/dashboard-client [[bin]] name = "syntaxis-dashboard" path = "src/bin/main.rs" [dependencies] # Serialization serde = { workspace = true } serde_json = { workspace = true } uuid = { workspace = true } # Error handling thiserror = { workspace = true } anyhow = { workspace = true } # HTTP server tokio = { workspace = true } tower = { workspace = true } tower-http = { workspace = true } axum = { workspace = true } # Logging/Tracing tracing = { workspace = true } tracing-subscriber = { workspace = true } # HTTP client for API calls reqwest = { workspace = true } # Date/time chrono = { workspace = true } # Configuration toml = { workspace = true } once_cell = { workspace = true } [features] default = [] [dev-dependencies]