-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
33 lines (26 loc) · 830 Bytes
/
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
[package]
name = "notox"
version = "1.0.8"
authors = ["n4n5 <[email protected]>"]
categories = ["command-line-utilities"]
edition = "2021"
description = "no toxic names anymore"
license = "MIT"
homepage = "https://github.com/Its-Just-Nans/notox"
repository = "https://github.com/Its-Just-Nans/notox"
keywords = ["clean", "filename", "file", "filesystem", "tool"]
[[bin]]
name = "notox"
path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0", features = ["derive"], optional = true }
serde_json = { version = "1.0", optional = true }
[features]
default = ["serde"]
serde = ["dep:serde", "dep:serde_json"]
[dev-dependencies]
assert_cmd = "2.0.16"
predicates = "3.1.3"
[package.metadata.docs.rs]
all-features = true