-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (33 loc) · 1.01 KB
/
Cargo.toml
File metadata and controls
35 lines (33 loc) · 1.01 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
[package]
authors = ["Chmouel Boudjnah <chmouel@chmouel.com>"]
name = "raffi"
description = "A simple fuzzel launcher based on YAML file"
version = "0.20.0"
edition = "2021"
readme = "README.md"
license = "Apache-2.0"
categories = ["command-line-utilities"]
keywords = ["task", "command", "launch"]
homepage = "https://github.com/chmouel/raffi"
documentation = "https://github.com/chmouel/raffi"
repository = "https://github.com/chmouel/raffi"
[features]
default = ["wayland"]
wayland = ["iced", "ureq", "regex", "meval"]
[dependencies]
anyhow = "1.0.102"
gumdrop = { version = "0.8.1" }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
serde_yaml = "0.9.34"
walkdir = "2.5.0"
fuzzy-matcher = "0.3.7"
iced = { version = "0.14", features = [
"tiny-skia",
"image",
"svg",
], optional = true }
meval = { version = "0.2", optional = true }
ureq = { version = "3", features = ["json"], optional = true }
regex = { version = "1.10", optional = true }
schemars = { version = "1.2", features = ["derive"] }