mirror of
https://github.com/NotAShelf/stash.git
synced 2026-04-13 14:33:47 +00:00
chore: bump dependencies
Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: I8ef1f283622f50d93ba9d581699e272b6a6a6964
This commit is contained in:
parent
4ab9ce4a71
commit
441334a250
2 changed files with 1014 additions and 537 deletions
1471
Cargo.lock
generated
1471
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
52
Cargo.toml
52
Cargo.toml
|
|
@ -13,44 +13,44 @@ rust-version = "1.90"
|
||||||
name = "stash" # actual binary name for Nix, Cargo, etc.
|
name = "stash" # actual binary name for Nix, Cargo, etc.
|
||||||
path = "src/main.rs"
|
path = "src/main.rs"
|
||||||
|
|
||||||
[features]
|
|
||||||
default = ["use-toplevel", "notifications"]
|
|
||||||
use-toplevel = ["dep:wayland-client", "dep:wayland-protocols-wlr"]
|
|
||||||
notifications = ["dep:notify-rust"]
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
clap = { version = "4.5.50", features = ["derive", "env"] }
|
base64 = "0.22.1"
|
||||||
|
clap = { version = "4.5.54", features = ["derive", "env"] }
|
||||||
clap-verbosity-flag = "3.0.4"
|
clap-verbosity-flag = "3.0.4"
|
||||||
ctrlc = "3.5.0"
|
|
||||||
color-eyre = "0.6.5"
|
color-eyre = "0.6.5"
|
||||||
|
crossterm = "0.29.0"
|
||||||
|
ctrlc = "3.5.1"
|
||||||
dirs = "6.0.0"
|
dirs = "6.0.0"
|
||||||
|
env_logger = "0.11.8"
|
||||||
imagesize = "0.14.0"
|
imagesize = "0.14.0"
|
||||||
inquire = { default-features = false, version = "0.9.1", features = [
|
inquire = { version = "0.9.2", default-features = false, features = [
|
||||||
"crossterm",
|
"crossterm",
|
||||||
] }
|
] }
|
||||||
libc = "0.2.177"
|
libc = "0.2.180"
|
||||||
log = "0.4.28"
|
log = "0.4.29"
|
||||||
env_logger = "0.11.8"
|
|
||||||
thiserror = "2.0.17"
|
|
||||||
wl-clipboard-rs = "0.9.2"
|
|
||||||
rusqlite = { version = "0.38.0", features = ["bundled"] }
|
|
||||||
smol = "2.0.2"
|
|
||||||
serde = { version = "1.0.228", features = ["derive"] }
|
|
||||||
serde_json = "1.0.145"
|
|
||||||
base64 = "0.22.1"
|
|
||||||
regex = "1.11.3"
|
|
||||||
ratatui = "0.29.0"
|
|
||||||
crossterm = "0.29.0"
|
|
||||||
unicode-segmentation = "1.12.0"
|
|
||||||
unicode-width = "0.2.0" # FIXME: held back by ratatui
|
|
||||||
wayland-client = { version = "0.31.11", features = ["log"], optional = true }
|
|
||||||
wayland-protocols-wlr = { version = "0.3.9", default-features = false, optional = true }
|
|
||||||
notify-rust = { version = "4.11.7", optional = true }
|
notify-rust = { version = "4.11.7", optional = true }
|
||||||
|
ratatui = "0.30.0"
|
||||||
|
regex = "1.12.2"
|
||||||
|
rusqlite = { version = "0.38.0", features = ["bundled"] }
|
||||||
|
serde = { version = "1.0.228", features = ["derive"] }
|
||||||
|
serde_json = "1.0.149"
|
||||||
|
smol = "2.0.2"
|
||||||
|
thiserror = "2.0.18"
|
||||||
|
unicode-segmentation = "1.12.0"
|
||||||
|
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 }
|
||||||
|
wl-clipboard-rs = "0.9.3"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tempfile = "3.18.0"
|
tempfile = "3.18.0"
|
||||||
|
|
||||||
|
[features]
|
||||||
|
default = ["notifications", "use-toplevel"]
|
||||||
|
notifications = ["dep:notify-rust"]
|
||||||
|
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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue