|
|
|
[package]
|
|
|
|
name = "Amethyst"
|
|
|
|
version = "4.0.0"
|
|
|
|
authors = ["Michal S. <michal@tar.black>", "axtlos <axtlos@tar.black>", "trivernis <trivernis@protonmail.com>"]
|
|
|
|
description = "A fast and efficient AUR helper"
|
|
|
|
repository = "https://github.com/crystal-linux/amethyst"
|
|
|
|
license-file = "LICENSE"
|
|
|
|
keywords = ["aur", "crystal-linux", "pacman", "aur-helper"]
|
|
|
|
categories = ["command-line-utilities"]
|
|
|
|
default-run = "ame"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "ame"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
incremental = true
|
|
|
|
debug = false
|
|
|
|
lto = "fat"
|
|
|
|
codegen-units = 1
|
|
|
|
|
|
|
|
[profile.dev]
|
|
|
|
opt-level = 0
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
minus = { version = "5.0.5", features = ["search", "static_output"] }
|
|
|
|
alpm = "2.2.1"
|
|
|
|
alpm-utils = "2.0.0"
|
|
|
|
pacmanconf = "2.0.0"
|
|
|
|
chrono = { version = "0.4.22", default-features = false, features = [ "clock", "std", "wasmbind" ] }
|
|
|
|
trigram = "0.4.4"
|
|
|
|
clap = { version = "3.2.17", features = [ "derive", "wrap_help" ] }
|
|
|
|
regex = { version = "1.6.0", default-features = false, features = [ "std", "unicode-perl" ] }
|
|
|
|
colored = "2.0.0"
|
|
|
|
serde = { version = "1.0.144", default-features = false, features = [ "derive", "serde_derive" ] }
|
|
|
|
native-tls = { version = "0.2.10", default-features = false }
|
|
|
|
libc = { version = "0.2.132", default-features = false }
|
|
|
|
async-recursion = "1.0.0"
|
|
|
|
aur-rpc = "0.2.0"
|
|
|
|
futures = "0.3.23"
|
|
|
|
tracing = "0.1.36"
|
|
|
|
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
|
|
|
|
textwrap = "0.15.0"
|
|
|
|
crossterm = "0.25.0"
|
|
|
|
toml = "0.5.9"
|
|
|
|
clap_complete = "3.2.4"
|
|
|
|
clap_complete_fig = "3.2.4"
|
|
|
|
color-eyre = { version = "0.6.2", features = ["issue-url", "url"] }
|
|
|
|
indicatif = { version = "0.17.0", features = ["tokio"] }
|
|
|
|
lazy_static = "1.4.0"
|
|
|
|
parking_lot = { version = "0.12.1", features = ["deadlock_detection"] }
|
|
|
|
dialoguer = { version = "0.10.2", features = ["fuzzy-select"] }
|
|
|
|
lazy-regex = "2.3.0"
|
|
|
|
directories = "4.0.1"
|
|
|
|
console = "0.15.1"
|
|
|
|
tracing-error = "0.2.0"
|
|
|
|
fuzzy-matcher = "0.3.7"
|
|
|
|
|
|
|
|
[dependencies.config]
|
|
|
|
version = "0.13.2"
|
|
|
|
features = ["toml"]
|
|
|
|
|
|
|
|
[dependencies.tokio]
|
|
|
|
version = "1.21.0"
|
|
|
|
features = ["rt", "rt-multi-thread", "io-std", "io-util", "process", "time", "macros", "tracing", "fs"]
|