chore: format Cargo manifest with Taplo; v0.3.5

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: Id35b12bba16b0e181bb4536154259b5a6a6a6964
This commit is contained in:
raf 2026-02-01 18:08:14 +03:00
commit 2227ef7e89
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF
2 changed files with 39 additions and 41 deletions

2
Cargo.lock generated
View file

@ -2124,7 +2124,7 @@ dependencies = [
[[package]] [[package]]
name = "stash-clipboard" name = "stash-clipboard"
version = "0.3.4" version = "0.3.5"
dependencies = [ dependencies = [
"base64", "base64",
"clap", "clap",

View file

@ -1,12 +1,12 @@
[package] [package]
name = "stash-clipboard" name = "stash-clipboard"
description = "Wayland clipboard manager with fast persistent history and multi-media support" description = "Wayland clipboard manager with fast persistent history and multi-media support"
version = "0.3.4" version = "0.3.5"
edition = "2024" edition = "2024"
authors = ["NotAShelf <raf@notashelf.dev>"] authors = [ "NotAShelf <raf@notashelf.dev>" ]
license = "MPL-2.0" license = "MPL-2.0"
readme = true readme = true
repository = "https://github.com/notashelf/stash" repository = "https://github.com/notashelf/stash"
rust-version = "1.90" rust-version = "1.90"
[[bin]] [[bin]]
@ -14,44 +14,42 @@ name = "stash" # actual binary name for Nix, Cargo, etc.
path = "src/main.rs" path = "src/main.rs"
[dependencies] [dependencies]
base64 = "0.22.1" base64 = "0.22.1"
clap = { version = "4.5.56", features = ["derive", "env"] } clap = { version = "4.5.56", features = [ "derive", "env" ] }
clap-verbosity-flag = "3.0.4" clap-verbosity-flag = "3.0.4"
color-eyre = "0.6.5" color-eyre = "0.6.5"
crossterm = "0.29.0" crossterm = "0.29.0"
ctrlc = "3.5.1" ctrlc = "3.5.1"
dirs = "6.0.0" dirs = "6.0.0"
env_logger = "0.11.8" env_logger = "0.11.8"
humantime = "2.3.0" humantime = "2.3.0"
imagesize = "0.14.0" imagesize = "0.14.0"
inquire = { version = "0.9.2", default-features = false, features = [ inquire = { version = "0.9.2", default-features = false, features = [ "crossterm" ] }
"crossterm", libc = "0.2.180"
] } log = "0.4.29"
libc = "0.2.180" notify-rust = { version = "4.11.7", optional = true }
log = "0.4.29" ratatui = "0.30.0"
notify-rust = { version = "4.11.7", optional = true } regex = "1.12.2"
ratatui = "0.30.0" rusqlite = { version = "0.38.0", features = [ "bundled" ] }
regex = "1.12.2" serde = { version = "1.0.228", features = [ "derive" ] }
rusqlite = { version = "0.38.0", features = ["bundled"] } serde_json = "1.0.149"
serde = { version = "1.0.228", features = ["derive"] } smol = "2.0.2"
serde_json = "1.0.149" thiserror = "2.0.18"
smol = "2.0.2" unicode-segmentation = "1.12.0"
thiserror = "2.0.18" unicode-width = "0.2.2"
unicode-segmentation = "1.12.0" wayland-client = { version = "0.31.12", features = [ "log" ], optional = true }
unicode-width = "0.2.2"
wayland-client = { version = "0.31.12", features = ["log"], optional = true }
wayland-protocols-wlr = { version = "0.3.10", default-features = false, optional = true } wayland-protocols-wlr = { version = "0.3.10", default-features = false, optional = true }
wl-clipboard-rs = "0.9.3" wl-clipboard-rs = "0.9.3"
[dev-dependencies] [dev-dependencies]
tempfile = "3.24.0" tempfile = "3.24.0"
[features] [features]
default = ["notifications", "use-toplevel"] default = [ "notifications", "use-toplevel" ]
notifications = ["dep:notify-rust"] notifications = [ "dep:notify-rust" ]
use-toplevel = ["dep:wayland-client", "dep:wayland-protocols-wlr"] use-toplevel = [ "dep:wayland-client", "dep:wayland-protocols-wlr" ]
[profile.release] [profile.release]
lto = true
opt-level = "z" opt-level = "z"
strip = true strip = true
lto = true