-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathCargo.toml
56 lines (48 loc) · 1.34 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
[package]
name = "onagre"
version = "1.1.1"
authors = ["Paul Delafosse <paul.delafosse@protonmail.com>"]
edition = "2018"
resolver = "2"
readme = "README.md"
license = "MIT"
repository = "https://github.com/oknozor/onagre"
categories = ["gui", "development-tools"]
keywords = ["launcher", "app-launcher", "pop-launcher", "onagre"]
description = """
A general purpose application launcher for X and wayland inspired by rofi/wofi and alfred, build with iced
and pop-launcher.
"""
[profile.release]
codegen-units = 1
lto = true
[features]
default = ["iced/wgpu", "iced/palette"]
debug = ["iced/debug"]
[dependencies]
iced = { version = "0.12.1", features = ["wgpu", "palette", "svg", "image", "tokio"] }
iced_core = "0.12.3"
iced_runtime = "0.12.1"
iced_style = "0.12.1"
tokio = { version = "1.29.1", features = ["process", "macros", "io-util"] }
redb = "1.5.0"
onagre-launcher-toolkit = "0.1.2"
clap = { version = "^4", features = ["derive"] }
freedesktop-icons = "0.2.6"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
once_cell = "^1"
anyhow = "^1"
dirs = "^5"
thiserror = "^1"
serde = { version = "^1", features = ["derive"] }
serde_ini = "0.2.0"
serde_json = "1.0.99"
pest = "2.7.0"
pest_derive = "2.7.0"
ico = "0.3.0"
regex = "1.8.4"
shell-words = "^1"
[dev-dependencies]
speculoos = "0.11.0"
pretty_assertions = "1.2.1"