datex_cli 0.0.5

The standalone Datex CLI
[package]
name = "datex_cli"
description = "The standalone Datex CLI"
authors = [
    "Benedikt Strehle <benedikt@unyt.org>",
    "Jonas Strehle <jonas@unyt.org>",
]
license = "MIT"
version = "0.0.5"
edition = "2024"
build = "build.rs"

[dependencies]
clap = { version = "4.0.23", features = ["derive"] }
datex-core = { version = "0.0.7", features = ["default", "debug"] }

tokio = { version = "1.17.0", features = ["full"] }
#tower-lsp = { version = "0.20.0", features = ["proposed"]}
# using fork realhydroper-lsp because tower-lsp does not support local threading (single-threaded tokio runtime), which is required by the DATEX runtime
realhydroper-lsp = { version = "0.22.0", features = ["proposed"] }
serde = { version = "1.0", features = ["derive"] }
rustyline = "15.0.0"
ratatui = "0.29.0"
crossterm = "0.28.1"
home = "0.5.11"
serde_json = "1.0.145"


[build-dependencies]
serde_json = "1.0.145"