handlr/Cargo.toml

31 lines
664 B
TOML
Raw Normal View History

2020-04-05 23:29:58 +02:00
[package]
2020-04-12 09:21:09 +02:00
name = "handlr"
2020-05-23 01:38:35 +02:00
version = "0.3.2"
2020-04-05 23:29:58 +02:00
authors = ["greg <gregory.mkv@gmail.com>"]
edition = "2018"
2020-05-17 22:02:25 +02:00
license = "MIT"
2020-05-17 22:07:21 +02:00
description = "Manage mimeapps.list and default applications with ease"
2020-04-05 23:29:58 +02:00
[dependencies]
pest = "2.1.3"
pest_derive = "2.1.0"
2020-06-06 06:24:32 +02:00
clap = "3.0.0-beta.1"
2020-04-08 21:53:00 +02:00
url = "2.1.1"
itertools = "0.9.0"
2020-04-12 09:21:09 +02:00
json = "0.12.4"
shlex = "0.1.1"
thiserror = "1.0.19"
2020-05-23 01:36:00 +02:00
ascii_table = "3.0.1"
2020-05-19 02:04:48 +02:00
xdg = "2.2.0"
mime = "0.3.16"
once_cell = "1.4.0"
regex = { version = "1.3.9", default-features = false, features = ["std"] }
mime-db = "0.1.5"
xdg-mime = { git = "https://github.com/ebassi/xdg-mime-rs" }
2020-06-06 06:24:32 +02:00
atty = "0.2.14"
notify-rust = "4.0.0-rc.1"
[profile.release]
opt-level=3
lto=true