mirror of
https://github.com/uutils/diffutils.git
synced 2026-05-06 14:17:17 -04:00
47 lines
1.1 KiB
TOML
47 lines
1.1 KiB
TOML
[package]
|
|
name = "diffutils"
|
|
version = "0.4.0"
|
|
edition = "2021"
|
|
description = "A CLI app for generating diff files"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/uutils/diffutils"
|
|
|
|
[lib]
|
|
name = "diffutilslib"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "diffutils"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
chrono = "0.4.38"
|
|
diff = "0.1.13"
|
|
regex = "1.10.4"
|
|
same-file = "1.0.6"
|
|
unicode-width = "0.1.11"
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "1"
|
|
assert_cmd = "2.0.14"
|
|
predicates = "3.1.0"
|
|
tempfile = "3.10.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.12.0"
|
|
# CI backends to support
|
|
ci = ["github"]
|
|
# The installers to generate for each app
|
|
installers = []
|
|
# 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-pc-windows-msvc"]
|
|
# Publish jobs to run in CI
|
|
pr-run-mode = "plan"
|