-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (46 loc) · 1.43 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
# SPDX-FileCopyrightText: 2021 - 2024 Robin Vobruba <hoijui.quaero@gmail.com>
#
# SPDX-License-Identifier: Unlicense
[package]
name = "kicad-text-injector"
version = "0.3.2"
authors = ["Robin Vobruba <hoijui.quaero@gmail.com>"]
description = """
A tiny CLI tool that replaces variables of the style `${KEY}`
within KiCad PCB (pcbnew) files.
"""
license = "GPL-3.0-or-later"
repository = "https://github.com/hoijui/kicad-text-injector"
homepage = "https://github.com/hoijui/kicad-text-injector"
keywords = ["cli", "ci", "kicad"]
categories = ["command-line-utilities", "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 = "warn"
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 = "warn"
[dependencies]
clap = { version = "4.5", features = ["cargo", "derive"] }
cli_utils = { version = "0.9", package = "cli_utils_hoijui" }
const_format = "0.2"
git-version = "0.3"
once_cell = "1.19"
regex = "1.10"
repvar = "0.14"