-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (25 loc) · 802 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "krunner"
version = "0.1.1"
edition = "2021"
authors = ["Leah Amelia Chen <[email protected]>"]
description = "A crate for writing KRunner plugins in Rust, easily."
repository = "https://github.com/pluiedev/krunner"
license = "MIT OR Apache-2.0"
keywords = ["krunner", "dbus"]
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docs_rs"]
[features]
tokio = ["dep:async-trait", "dep:dbus-tokio", "dep:tokio"]
derive = ["dep:krunner-derive"]
[dependencies]
dbus = "0.9.7"
dbus-crossroads = "0.5.2"
# tokio
async-trait = { version = "0.1.73", optional = true }
dbus-tokio = { version = "0.7.6", optional = true }
tokio = { version = "1.32.0", features = ["rt", "sync"], optional = true }
# derive
krunner-derive = { version = "0.1.0", optional = true }
[workspace]
members = ["derive"]