-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
21 lines (19 loc) · 865 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[package]
name = "test-notifier"
version = "0.1.1"
edition = "2021"
description = "a struct that you can put at the top of your tests to output some information about which test ended, and when, and some other information if you want"
authors = ["Claudia Richoux <c@laudiacay.cool>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/laudiacay/test-notifier"
homepage = "https://github.com/laudiacay/test-notifier"
documentation = "https://docs.rs/test-notifier"
keywords = ["test", "notifier", "rust", "IFTTT", "backtrace"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
backtrace = "0.3.67"
nustify = "0.2"
lazy_static = "1.4.0"
tokio = {version = "1.25.0", features = ["rt", "macros", "rt-multi-thread"]}
futures = {version = "0.3.26", features = ["executor"]}