[package]
edition = "2021"
name = "databricks-tui"
version = "0.26.0"
build = false
exclude = [
"docs/",
".github/",
"demo/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Terminal dashboard for Databricks: compute, jobs, pipelines, warehouses, Unity Catalog, SQL console, costs and lineage"
readme = "README.md"
keywords = [
"databricks",
"tui",
"terminal",
"dashboard",
"lakehouse",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/pjhamera/databricks-tui"
[lib]
name = "databricks_tui"
path = "src/lib.rs"
[[bin]]
name = "databricks-tui"
path = "src/main.rs"
[[test]]
name = "shape_test"
path = "tests/shape_test.rs"
[dependencies.anyhow]
version = "1"
[dependencies.chrono]
version = "0.4.45"
[dependencies.chrono-tz]
version = "0.10.4"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.cron]
version = "0.17.0"
[dependencies.crossterm]
version = "0.28"
[dependencies.ratatui]
version = "0.29"
[dependencies.self_update]
version = "0.42"
features = [
"rustls",
"archive-tar",
"compression-flate2",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = ["full"]
[dev-dependencies.tokio-test]
version = "0.4"