-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
45 lines (40 loc) · 1.23 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
[package]
name = "zet"
version = "2.0.1"
authors = ["Yarrow Angelweed <[email protected]>"]
description = "zet finds the union, intersection, set difference, etc of files considered as sets of lines"
documentation = "https://github.com/yarrow/zet"
homepage = "https://github.com/yarrow/zet"
repository = "https://github.com/yarrow/zet"
readme = "README.md"
keywords = ["set", "operation", "union", "uniq", "intersection"]
categories = ["command-line-utilities", "text-processing"]
license = "MIT OR Apache-2.0"
edition = '2021'
rust-version = "1.78.0"
[dependencies]
anyhow = "1.0.42"
anstyle = "1.0.4"
anstream = "0.6.5"
bstr = { version = "1.1.0", default-features = false, features = ["std", "alloc"] }
encoding_rs = "0.8.28"
encoding_rs_io = "0.1.7"
fxhash = "0.2.1"
clap = { version = "4.1.4", default-features = false, features = ["std","error-context","suggestions", "derive","cargo"] }
memchr = "2.4.0"
indexmap = "1.7.0"
is-terminal = "0.4.2"
textwrap = "0.16.0"
once_cell = "1.17.1"
terminal_size = "0.2.5"
[dev-dependencies]
assert_cmd = "2.0.7"
assert_fs = "1.0.10"
itertools = "0.10.5"
[profile.release]
opt-level = 3
lto = "thin"
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"