-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (25 loc) · 800 Bytes
/
Cargo.toml
File metadata and controls
28 lines (25 loc) · 800 Bytes
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
[package]
name = "cargo-testify"
version = "0.3.0"
authors = ["Sergey Potapov <blake131313@gmail.com>"]
description = "Tool to automatically run tests on your Rust project and notify about the result."
keywords = ["test", "notify", "notification", "testify", "cargo"]
license = "MIT"
repository = "https://github.com/greyblake/cargo-testify"
homepage = "https://github.com/greyblake/cargo-testify"
documentation = "https://docs.rs/cargo-testify"
readme = "README.md"
categories = ["development-tools::testing", "development-tools::cargo-plugins"]
include = [
"src/**/*",
"Cargo.toml",
"README.md"
]
[badges]
travis-ci = { repository = "greyblake/cargo-testify", branch = "master" }
[dependencies]
glob = "0.2"
notify = "^2.5.0"
regex = "0.2"
notify-rust = "3.4.2"
structopt = "0.2.10"