handlr/Cargo.toml

27 lines
490 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-18 22:59:23 +02:00
version = "0.2.1"
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]
dirs = "2.0.2"
pest = "2.1.3"
pest_derive = "2.1.0"
2020-05-16 09:23:53 +02:00
dashmap = "3.11.1"
structopt = "0.3.14"
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"
2020-05-16 09:23:53 +02:00
thiserror = "1.0.18"
2020-04-12 09:21:09 +02:00
ascii_table = "3.0.0"
2020-05-16 09:19:50 +02:00
mime-db = "0.1.5"
2020-05-17 21:48:56 +02:00
mime-sniffer = "0.1.2"
[profile.release]
opt-level=3
lto=true