clide/Cargo.toml

22 lines
571 B
TOML
Raw Normal View History

2025-03-29 08:01:13 -04:00
[package]
name = "clide"
version = "0.1.0"
edition = "2024"
[dependencies]
cxx = "1.0.95"
cxx-qt = "0.8.0"
cxx-qt-lib = { version = "0.8.0", features = ["qt_full", "qt_gui", "qt_qml"] }
2025-03-29 16:55:26 -04:00
log = { version = "0.4.27", features = [] }
2025-03-30 16:14:58 -04:00
dirs = "6.0.0"
2025-03-31 22:32:17 -04:00
syntect = "5.2.0"
clap = { version = "4.5.54", features = ["derive"] }
2026-01-17 11:40:40 -05:00
ratatui = "0.30.0"
anyhow = "1.0.100"
tui-tree-widget = "0.24.0"
2026-01-19 09:23:12 -05:00
edtui = "0.11.1"
2025-03-29 08:01:13 -04:00
[build-dependencies]
# The link_qt_object_files feature is required for statically linking Qt 6.
cxx-qt-build = { version = "0.8.0", features = ["link_qt_object_files"] }