-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
43 lines (38 loc) · 1.13 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
[package]
name = "fixred"
version = "1.1.4"
edition = "2018"
authors = ["rhysd <[email protected]>"]
description = "Command line tool to fix outdated URLs in files with redirected ones"
license = "MIT"
homepage = "https://github.com/rhysd/fixred#readme"
repository = "https://github.com/rhysd/fixred"
readme = "README.md"
include = [
"/src",
"/LICENSE.txt",
"/README.md",
]
categories = ["command-line-utilities"]
keywords = ["tool", "fixer", "outdated-links"]
[badges]
maintenance = { status = "passively-maintained" }
[[bin]]
name = "fixred"
path = "src/main.rs"
required-features = ["executable"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
aho-corasick = "0.7"
anyhow = "1"
chashmap = "2"
clap = { version = "3.0.0-beta", default-features = false, features = ["std", "color", "suggestions"], optional = true }
curl = "0.4"
env_logger = { version = "0.9", default-features = false, features = ["termcolor", "atty", "humantime"], optional = true }
log = "0.4"
rayon = "1"
regex = "1"
walkdir = "2"
[features]
executable = ["clap", "env_logger"]
default = ["executable"]