dust/Cargo.toml
2023-12-30 09:29:33 -05:00

64 lines
1.6 KiB
TOML

[package]
name = "dust-lang"
description = "General purpose programming language"
version = "0.4.0"
repository = "https://git.jeffa.io/jeff/dust.git"
edition = "2021"
license = "MIT"
authors = ["Jeff Anderson"]
[[bin]]
name = "dust"
path = "src/main.rs"
[[bin]]
name = "tui"
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
[dependencies]
ansi_term = "0.12.1"
better-panic = "0.3.0"
clap = { version = "4.4.4", features = ["derive", "cargo", "wrap_help", "unicode", "string", "unstable-styles"] }
color-eyre = "0.6.2"
comfy-table = "7.0.1"
config = "0.13.3"
crossterm = { version = "0.27.0", features = ["serde", "event-stream"] }
csv = "1.2.2"
derive_deref = "1.1.1"
directories = "5.0.1"
futures = "0.3.30"
git2 = "0.18.1"
human-panic = "1.2.0"
json5 = "0.4.1"
lazy_static = "1.4.0"
libc = "0.2.148"
log = "0.4.20"
pretty_assertions = "1.4.0"
rand = "0.8.5"
ratatui = "0.25.0"
rayon = "1.8.0"
reqwest = { version = "0.11.20", features = ["blocking", "json"] }
rustyline = { version = "12.0.0", features = ["derive", "with-file-history"] }
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107"
serial_int = "2.0.0"
signal-hook = "0.3.17"
strip-ansi-escapes = "0.2.0"
strum = { version = "0.25.0", features = ["derive"] }
tokio = { version = "1.35.1", features = ["signal-hook-registry", "macros", "signal", "rt", "time", "rt-multi-thread"] }
tokio-util = "0.7.10"
toml = "0.8.1"
tracing = "0.1.40"
tracing-error = "0.2.0"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
tree-sitter = "0.20.10"
tui-textarea = { version = "0.4.0", features = ["search"] }
tui-tree-widget = "0.16.0"
[build-dependencies]
cc = "1.0"