-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
86 lines (80 loc) · 2.41 KB
/
Cargo.toml
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# SPDX-FileCopyrightText: 2021 - 2023 Robin Vobruba <hoijui.quaero@gmail.com>
#
# SPDX-License-Identifier: Unlicense
[package]
name = "projvar"
version = "0.19.5"
license = "AGPL-3.0-or-later"
authors = ["Robin Vobruba <hoijui.quaero@gmail.com>"]
description = """
A tiny CLI tool that tries to gather project specific meta-data in different ways,
to store them into key=value pairs in a file
for later use by other tools.
See --list for the keys set by this tool.
"""
repository = "https://github.com/hoijui/projvar"
homepage = "https://github.com/hoijui/projvar"
keywords = ["cli", "ci", "utility", "parsing", "git"]
categories = ["command-line-utilities", "filesystem", "text-processing"]
readme = "README.md"
edition = "2021"
[lints.rust]
rust_2021_compatibility = { level = "warn", priority = -1 }
[lints.clippy]
all = { level = "deny", priority = -1 }
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
cargo = { level = "warn", priority = -1 }
wildcard_enum_match_arm = "warn"
string_slice = "warn"
indexing_slicing = "warn"
clone_on_ref_ptr = "warn"
try_err = "warn"
shadow_reuse = "allow"
empty_structs_with_brackets = "warn"
else_if_without_else = "warn"
use_debug = "warn"
print_stdout = "warn"
print_stderr = "warn"
#default_trait_access = "allow"
option_if_let_else = "allow"
[dependencies]
askalono = "0.4"
chrono = "0.4"
clap = { version = "4.4", features = ["cargo", "derive"] }
cli_utils = { version = "0.7", package = "cli_utils_hoijui" }
const_format = "0.2"
enum-map = "2.7"
git-version = "0.3"
git2 = { version = "0.18", default-features = false } # "default-features = false" is required for MUSL compatibility, to get rid of OpenSSL
gix-url = "0.27"
# git-url-parse = "0.4"
human-panic = "2.0"
lazy_static = "1.4"
log = "0.4"
proc-macro2 = "1.0"
regex = "1.10"
remain = "0.2"
repvar = "0.13"
# repvar = { path = "../repvar" }
serde = { version = "1.0", features = ["derive", "rc"] }
serde_json = "1.0"
spdx = "0.10"
strum = "0.26"
strum_macros = "0.26"
#enumset = "1.0.7"
thiserror = "1.0"
tracing = { version = "0.1", default-features = false }
tracing-subscriber = { version = "0.3" }
url = "2.5"
[build-dependencies]
reqwest = { version = "0.12", features = ["blocking"] }
[dev-dependencies]
assert_cmd = "2.0"
assert_fs = "1.0"
cmd_lib = "1.9"
const-fnv1a-hash = "1.1"
directories = "5.0"
fake = { version = "2.9", features = ['chrono', 'uuid'] }
predicates = "3.0"
uuid = "1.6"