summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: dbecccc650885c6a9c29a35ef4a59e0c2b409960 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name            = "repolocli"
version         = "0.1.0"
authors         = ["Matthias Beyer <matthias.beyer@atos.net>"]
edition         = "2018"
description     = "CLI for repology.org"
documentation   = "https://docs.rs/repolocli"
homepage        = "https://github.com/matthiasbeyer/repolocli"
repository      = "https://github.com/matthiasbeyer/repolocli"
readme          = "./README.md"
keywords        = ["cli", "repology"]
categories      = ["command-line-interface", "command-line-utilities"]
license         = "GPL-2.0-only"

[badges]
maintenance = { status = "actively-developed" }

[dependencies]
anyhow          = "1"
env_logger     = "0.8"
librepology     = { version = "0.1.0", path = "./librepology" }
log             = "0.4"
result-inspect  = "0.2"
serde           = "1"
serde_json      = "1"
tokio           = { version = "1", features = ["full"] }

[dependencies.clap]
version             = ">=2.33"
default-features    = false
features            = [ "suggestions", "color", "wrap_help" ]