-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
57 lines (52 loc) · 1.84 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
[package]
name = "rename_files"
version = "0.4.4"
authors = ["Ethan Skowronski-Lutz"]
edition = "2021"
repository = "https://github.com/ethanmsl/rename_files"
homepage = "https://ethanmsl.github.io/rename_files/"
categories = ["command-line-utilities", "file-system", "text-processing"]
publish = true
description = "CLI tool (& lib); regex search files & optionally rename. Recursive and Test flags available, but intentionally minimal."
[lints.rust]
unsafe_code = { level = "forbid" }
[dependencies]
# chrono = "0.4"
clap = { version = "4", features = ["derive", "wrap_help"] }
# derive_more = "0.99"
# indicatif = "0.17"
# itertools = "0.13"
owo-colors = "4"
regex = { version = "1", features = ["logging"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["chrono", "env-filter"] }
walkdir = "2"
[dev-dependencies]
test-log = { version = "0.2", features = ["trace"] }
tempfile = "3"
# quickcheck = "1"
# quickcheck_macros = "1"
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
# Config for 'cargo dist'
[workspace.metadata.dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.22.1"
# CI backends to support
ci = "github"
# The installers to generate for each app
installers = ["shell", "powershell", "homebrew"]
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-unknown-linux-musl", "x86_64-pc-windows-msvc"]
# Which actions to run on pull requests
pr-run-mode = "plan"
# A GitHub repo to push Homebrew formulas to
tap = "ethanmsl/homebrew-rename_files"
# Publish jobs to run in CI
publish-jobs = ["homebrew"]
# Path that installers should place binaries in
install-path = "CARGO_HOME"
# Whether to install an updater program
install-updater = false