17 lines
426 B
TOML
17 lines
426 B
TOML
[package]
|
|
name = "blah"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
cxx = "1.0.122"
|
|
cxx-qt = "0.7.1"
|
|
cxx-qt-lib = { version = "0.7.1", features = [ "qt_full" ] }
|
|
cxx-qt-lib-extras = "0.7.1"
|
|
markdown = "=1.0.0-alpha.17"
|
|
|
|
[build-dependencies]
|
|
# The link_qt_object_files feature is required for statically linking Qt 6.
|
|
cxx-qt-build = { version = "0.7.1", features = [ "link_qt_object_files" ] }
|
|
qt-build-utils = "0.7.1"
|
|
|