-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (29 loc) · 950 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 = "urldecoder"
version = "1.3.2"
edition = "2021"
authors = ["lxl66566 <lxl66566@gmail.com>"]
description = "A fast, feature-rich, file-oriented batch URL decoder written in Rust."
homepage = "https://github.com/lxl66566/urldecoder"
repository = "https://github.com/lxl66566/urldecoder"
documentation = "https://github.com/lxl66566/urldecoder"
license = "MIT"
keywords = ["url", "decode", "batch"]
readme = "README.md"
categories = ["filesystem"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.5.1", features = ["derive"] }
colored = "2.1.0"
glob = "0.3.1"
regex = "1.10.3"
tokio = { version = "1.36.0", features = ["fs", "macros", "rt-multi-thread"] }
urlencoding = "2.1.3"
die-exit = { version = "0.5.0", features = ["red"] }
[dev-dependencies]
temp_testdir = "0.2.3"
[profile.release]
strip = true
lto = true
panic = "abort"
opt-level = "z"