This repository has been archived on 2026-07-13. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
nova-shell/plugin/Cargo.toml

36 lines
781 B
TOML

[package]
name = "nova-plugin"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["cdylib"]
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
cast_possible_truncation = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
[dependencies]
cxx = "1.0"
cxx-qt = "0.8.1"
cxx-qt-lib = { version = "0.8.1", features = ["qt_full"] }
ctor = "0.13"
libc = "0.2"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
dirs = "6.0.0"
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
zbus = { version = "5.15.0", default-features = false, features = ["tokio"] }
tokio = { version = "1.52.2", features = [
"macros",
"net",
"rt",
"sync",
"time",
] }
[build-dependencies]
cxx-qt-build = "0.8.1"