2024-01-22 22:01:07 +01:00
|
|
|
[package]
|
|
|
|
|
name = "diffutils"
|
2024-04-04 00:30:46 +02:00
|
|
|
version = "0.4.0"
|
2024-01-24 09:30:11 +01:00
|
|
|
edition = "2021"
|
2024-01-22 22:01:07 +01:00
|
|
|
description = "A CLI app for generating diff files"
|
|
|
|
|
license = "MIT OR Apache-2.0"
|
2024-01-22 22:33:29 +01:00
|
|
|
repository = "https://github.com/uutils/diffutils"
|
2024-01-22 22:01:07 +01:00
|
|
|
|
2024-01-22 22:32:11 +01:00
|
|
|
[lib]
|
2024-01-24 09:30:11 +01:00
|
|
|
name = "diffutilslib"
|
2024-01-22 22:32:11 +01:00
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
2024-01-22 22:01:07 +01:00
|
|
|
[[bin]]
|
|
|
|
|
name = "diffutils"
|
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2024-04-16 16:20:52 +00:00
|
|
|
chrono = "0.4.38"
|
2024-04-16 19:35:01 +00:00
|
|
|
diff = "0.1.13"
|
2024-04-10 22:20:48 +05:30
|
|
|
regex = "1.10.3"
|
2024-02-23 23:45:38 +01:00
|
|
|
same-file = "1.0.6"
|
2024-03-04 21:41:27 +01:00
|
|
|
unicode-width = "0.1.11"
|
2024-01-23 12:36:57 +01:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
pretty_assertions = "1"
|
2024-02-22 17:15:03 +01:00
|
|
|
assert_cmd = "2.0.14"
|
|
|
|
|
predicates = "3.1.0"
|
2024-04-03 22:31:44 +00:00
|
|
|
tempfile = "3.10.1"
|
2024-04-04 00:29:50 +02:00
|
|
|
|
|
|
|
|
# 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"
|