-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (24 loc) · 854 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
[package]
name = "gignore"
version = "0.2.2"
authors = ["Daniel T. Rodrigues <[email protected]>"]
license = "MIT"
description = "A command line tool to generate gitignore template files"
readme = "README.md"
homepage = "https://github.com/danitrod/gignore/"
repository = "https://github.com/danitrod/gignore/"
keywords = ["cli", "gitignore", "git"]
categories = ["command-line-utilities"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-std = {version = "1.9.0", features = ["attributes"]}
async-trait = "0.1.50"
clap = "3.0.0-beta.5"
futures = "0.3.15"
scraper = "0.12.0"
surf = "2.2.0"
termcolor = "1.1.2"
[dev-dependencies]
assert_cmd = "1.0.5"
cargo-husky = {version = "1.5.0", default-features = false, features = ["precommit-hook", "run-cargo-clippy"]}