-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
47 lines (43 loc) · 1.51 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
[package]
name = "hyprland-autoname-workspaces"
authors = ["Cyril Levis", "Maxim Baz"]
version = "1.1.15"
edition = "2021"
categories = ["gui"]
keywords = ["linux", "desktop-application", "hyprland", "waybar", "wayland"]
description = "This app automatically rename workspaces with icons of started applications."
readme = "README.md"
license = "ISC"
homepage = "https://github.com/hyprland-community/hyprland-autoname-workspaces"
repository = "https://github.com/hyprland-community/hyprland-autoname-workspaces"
[dependencies]
regex = "1"
clap = { version = "4.3.19", features = ["derive"] }
hyprland = { version = "=0.4.0-alpha.3" , features = ["silent"] }
signal-hook = "0.3.17"
toml = { version = "0.7.6", features = ["indexmap", "preserve_order"] }
xdg = "2.5.2"
inotify = "0.10.2"
serde = "1.0.181"
strfmt = "0.2.4"
serde_json = "1.0.104"
single-instance = "0.3.3"
semver = "1.0.18"
[features]
dev = ["hyprland/default"]
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
# Config for 'cargo dist'
[workspace.metadata.dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.0.7"
# The preferred Rust toolchain to use in CI (rustup toolchain syntax)
rust-toolchain-version = "1.71.0"
# CI backends to support (see 'cargo dist generate-ci')
ci = ["github"]
# The installers to generate for each app
installers = []
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["x86_64-unknown-linux-gnu", "aarch64-unknown-linux-gnu"]