clide/Cargo.toml

21 lines
554 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.7"
2025-03-30 21:38:57 -04:00
cxx-qt-lib = { version="0.7", features = ["qt_full", "qt_gui"] }
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"
2025-04-13 10:20:43 -04:00
structopt = "0.3.26"
2026-01-17 11:40:40 -05:00
ratatui = "0.30.0"
anyhow = "1.0.100"
tui-tree-widget = "0.24.0"
uuid = { version = "1.19.0", features = ["v4"] }
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.7", features = [ "link_qt_object_files" ] }