handlr/Cargo.toml

34 lines
668 B
TOML
Raw Permalink Normal View History

2020-04-05 23:29:58 +02:00
[package]
2020-04-12 09:21:09 +02:00
name = "handlr"
2021-04-30 02:53:18 +02:00
version = "0.6.4"
2021-04-24 00:24:52 +02:00
authors = ["Gregory <gregory.mkv@gmail.com>"]
2020-04-05 23:29:58 +02:00
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"
resolver = "2"
2020-04-05 23:29:58 +02:00
[dependencies]
pest = "2.1.3"
pest_derive = "2.1.0"
2020-11-04 06:05:56 +01:00
clap = "3.0.0-beta.2"
url = "2.2.1"
itertools = "0.10.0"
2020-04-12 09:21:09 +02:00
json = "0.12.4"
shlex = "1.0.0"
thiserror = "1.0.24"
2020-12-19 22:29:36 +01:00
ascii_table = "3.0.2"
2020-05-19 02:04:48 +02:00
xdg = "2.2.0"
mime = "0.3.16"
mime-db = "1.3.0"
2020-06-06 06:24:32 +02:00
atty = "0.2.14"
confy = "0.4.0"
serde = { version = "1.0.125", features = ["derive"] }
2021-04-30 02:52:25 +02:00
xdg-mime = "0.3.3"
2020-12-19 22:29:36 +01:00
freedesktop_entry_parser = "1.1.1"
once_cell = "1.7.2"
aho-corasick = "0.7.15"
[profile.release]
opt-level=3
lto=true