-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
36 lines (33 loc) · 891 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
34
35
36
[package]
name = "urlsup"
version = "1.0.1"
description = "CLI to validate URLs in files"
authors = ["Simon Egersand <s.egersand@gmail.com>"]
keywords = ["cli", "ci", "github", "action", "links"]
repository = "https://github.com/simeg/urlsup"
homepage = "https://github.com/simeg/urlsup"
documentation = "https://github.com/simeg/urlsup/blob/master/README.md"
readme = "README.md"
license = "MIT"
edition = "2021"
include = [
"src/**/*",
"Cargo.toml",
"README.md"
]
[dependencies]
async-trait = "0.1.52"
clap = { version = "3.1.6", default-features = false, features = ["std", "cargo"] }
reqwest = "0.11.9"
tokio = { version = "1.17.0", features = ["macros", "rt-multi-thread"] }
futures = "0.3.21"
grep = "0.2.8"
linkify = "0.8.0"
num_cpus = "1.13.1"
spinners = "3.0.1"
term = "0.7.0"
[dev-dependencies]
tempfile = "3.3.0"
mockito = "0.31.0"
assert_cmd = "2.0.4"
predicates = "2.1.1"