-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (34 loc) · 982 Bytes
/
Copy pathCargo.toml
File metadata and controls
39 lines (34 loc) · 982 Bytes
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
[package]
name = "zsplit-cli"
version = "0.4.0"
edition = "2021"
rust-version = "1.74"
license = "GPL-3.0-only"
authors.workspace = true
readme.workspace = true
homepage.workspace = true
repository.workspace = true
description = "Split text into multiple files by line"
keywords = ["split", "text", "coreutils", "cli", "utility"]
categories = ["command-line-utilities", "text-editors", "filesystem"]
exclude = ["/scripts", "*.drawio"]
[[bin]]
name = "zsplit"
path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
zsplit = { version = "~0.4", path = "../zsplit" }
clap = { version = "3.0", features = ["derive"] }
thiserror = "2.0"
error-stack = "0.6"
bool_ext = "0.7"
human-panic = "2.0"
sysexits = "0.8"
[dev-dependencies]
zsplit = { version = "~0.4", path = "../zsplit", features = ["test_mock"] }
itertools = "0.14"
assert_fs = "1.1"
assert_cmd = "2.0"
escargot = "0.5"
[lints]
workspace = true