mirror of
https://github.com/uutils/findutils.git
synced 2026-05-06 06:06:46 -04:00
3b23c9a41e
Bumps [ctor](https://github.com/mmastrac/rust-ctor) from 0.11.1 to 0.12.0. - [Changelog](https://github.com/mmastrac/linktime/blob/master/CHANGELOG.md) - [Commits](https://github.com/mmastrac/rust-ctor/commits) --- updated-dependencies: - dependency-name: ctor dependency-version: 0.12.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
65 lines
1.4 KiB
TOML
65 lines
1.4 KiB
TOML
[package]
|
|
name = "findutils"
|
|
version = "0.8.0"
|
|
homepage = "https://github.com/uutils/findutils"
|
|
repository = "https://github.com/uutils/findutils"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
description = "Rust implementation of GNU findutils"
|
|
authors = ["uutils developers"]
|
|
|
|
[dependencies]
|
|
argmax = "0.4.0"
|
|
chrono = "0.4.44"
|
|
clap = "4.6"
|
|
faccess = "0.2.4"
|
|
nix = { version = "0.31", features = ["fs", "user"] }
|
|
onig = { version = "6.5", default-features = false }
|
|
regex = "1.12"
|
|
uucore = { version = "0.8.0", features = ["entries", "fs", "fsext", "mode"] }
|
|
walkdir = "2.5"
|
|
|
|
[dev-dependencies]
|
|
ctor = "0.12"
|
|
filetime = "0.2"
|
|
nix = { version = "0.31", features = ["fs"] }
|
|
tempfile = "3"
|
|
uutests = "0.8.0"
|
|
|
|
[[bin]]
|
|
name = "find"
|
|
path = "src/find/main.rs"
|
|
|
|
[[bin]]
|
|
name = "xargs"
|
|
path = "src/xargs/main.rs"
|
|
|
|
[[bin]]
|
|
name = "testing-commandline"
|
|
path = "src/testing/commandline/main.rs"
|
|
|
|
[profile.release]
|
|
lto = "thin"
|
|
codegen-units = 1
|
|
|
|
[profile.release-fast]
|
|
inherits = "release"
|
|
panic = "abort"
|
|
|
|
[lints.clippy]
|
|
multiple_crate_versions = "allow"
|
|
cargo_common_metadata = "allow"
|
|
uninlined_format_args = "allow"
|
|
missing_panics_doc = "allow"
|
|
|
|
use_self = "warn"
|
|
needless_pass_by_value = "warn"
|
|
semicolon_if_nothing_returned = "warn"
|
|
single_char_pattern = "warn"
|
|
explicit_iter_loop = "warn"
|
|
if_not_else = "warn"
|
|
manual_let_else = "warn"
|
|
# Disable for now, we have a few occurrences
|
|
# panic = "warn"
|