-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
73 lines (67 loc) · 1.53 KB
/
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
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
73
[package]
name = "runst"
version = "0.1.7" # 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/**/*",
"dbus/*",
"config/*",
"build.rs",
"Cargo.*",
"LICENSE-*",
"*.md",
]
edition = "2021"
rust-version = "1.70.0"
[dependencies]
dbus = "0.9.7"
dbus-crossroads = "0.5.2"
x11rb = { version = "0.13.1", default-features = false, features = [
"allow-unsafe-code",
] }
cairo-rs = { version = "0.20.5", default-features = false, features = [
"use_glib",
"xcb",
] }
pangocairo = "0.20.4"
pango = "0.20.6"
thiserror = "2.0.3"
serde = { version = "1.0.215", features = ["derive"] }
toml = "0.8.19"
sscanf = "0.4.2"
colorsys = "0.6.7"
dirs = "5.0.1"
rust-embed = { version = "8.5.0", features = ["compression"] }
tera = "1.20.0"
estimated_read_time = "1.0.0"
regex = "1.11.1"
serde_regex = "1.1.0"
serde_json = "1.0.132"
tracing = "=0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
humantime = "2.1.0"
[build-dependencies]
dbus-codegen = "0.12.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