url-eater/Cargo.toml

22 lines
628 B
TOML
Raw Normal View History

2023-04-02 17:20:29 +00:00
[package]
name = "url-eater"
2024-01-08 20:39:06 +00:00
version = "0.2.0"
2023-04-02 17:20:29 +00:00
edition = "2021"
authors = ["Agatha V. Lovelace <agatha@technogothic.net>"]
description = "Strip unneeded parameters from URLs copied to clipboard"
license = "NVPLv7+"
rust-version = "1.66.1"
2023-04-02 17:20:29 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
arboard = { version = "3.3.0", features = ["wayland-data-control"] }
2023-04-02 17:20:29 +00:00
knuffel = "3.0.0"
memoize = { version = "0.4.0", features = ["full"] }
2023-04-02 17:20:29 +00:00
miette = { version = "5.7.0", features = ["fancy"] }
url = "2.5.0"
2023-04-02 17:20:29 +00:00
wildmatch = "2.1.1"
[dev-dependencies]
pretty_assertions = "1.4.0"