this repo has no description
1[package]
2name = "lix-diff"
3version = "1.1.1"
4license = "MIT"
5description = "A lix plugin for diffing two generations"
6homepage = "https://github.com/tgirlcloud/lix-diff"
7authors = ["Isabel Roses <isabel@isabelroses.com>"]
8edition = "2024"
9
10[dependencies]
11clap = { version = "4.5.47", features = ["derive"] }
12color-eyre = "0.6.5"
13humansize = "2.1.3"
14nu-ansi-term = "0.50.1"
15serde = { version = "1.0.223", features = ["derive"] }
16serde_json = "1.0.145"
17strip-ansi-escapes = "0.2.1"
18terminal-light = "1.8.0"
19
20[lints.clippy]
21all = "warn"
22pedantic = "warn"
23unreadable_literal = { level = "allow", priority = 1 }
24
25[profile.release]
26opt-level = "s"
27lto = "fat"
28codegen-units = 1
29panic = "abort"
30strip = true