-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathCargo.toml
More file actions
72 lines (67 loc) · 1.57 KB
/
Cargo.toml
File metadata and controls
72 lines (67 loc) · 1.57 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[package]
name = "runst"
version = "0.2.0" # bumped by release.sh
description = "A dead simple notification daemon 🦡"
authors = ["Orhun Parmaksız <orhunparmaksiz@gmail.com>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
homepage = "https://github.com/orhun/runst"
repository = "https://github.com/orhun/runst"
keywords = ["notification", "daemon", "dbus", "notify", "x11"]
categories = ["command-line-utilities"]
include = [
"src/**/*",
"config/*",
"build.rs",
"Cargo.*",
"LICENSE-*",
"*.md",
]
edition = "2021"
rust-version = "1.70.0"
[dependencies]
zbus = "5.14"
zvariant = "5"
tokio = { version = "1.50", features = ["rt-multi-thread", "macros"] }
async-trait = "0.1"
futures-util = "0.3"
x11rb = { version = "0.13.2", default-features = false, features = [
"allow-unsafe-code",
] }
cairo-rs = { version = "0.22.0", default-features = false, features = [
"use_glib",
"xcb",
] }
pangocairo = "0.22.0"
pango = "0.22.0"
thiserror = "2.0.18"
serde = { version = "1.0.228", features = ["derive"] }
toml = "1.0.4"
sscanf = "0.5.0"
colorsys = "0.7.3"
dirs = "6.0.0"
rust-embed = { version = "8.11.0", features = ["compression"] }
tera = "1.20.1"
estimated_read_time = "1.0.0"
regex = "1.12.3"
serde_regex = "1.1.0"
serde_json = "1.0.149"
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.22", features = ["env-filter"] }
humantime = "2.3.0"
[profile.dev]
opt-level = 0
debug = true
panic = "abort"
[profile.test]
opt-level = 0
debug = true
[profile.release]
opt-level = 3
debug = false
panic = "unwind"
lto = true
codegen-units = 1
[profile.bench]
opt-level = 3
debug = false