-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 722 Bytes
/
Copy pathCargo.toml
File metadata and controls
32 lines (29 loc) · 722 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
29
30
31
32
[package]
name = "pomodoro"
version = "0.1.1"
authors = ["Peter Farr <Peter@PrismaPhonic.com>"]
edition = "2018"
description = "This is a pomodoro timer for your terminal! Pings Linux or OSX notification systems"
repository = "https://github.com/PrismaPhonic/Pomodoro"
documentation = "https://docs.rs/pomodoro"
readme = "README.md"
license = "MIT"
include = [
"**/*.rs",
"Cargo.toml",
"README.md",
"icon/*",
"icon/",
]
[badges]
travis-ci = { repository = "PrismaPhonic/Pomodoro", branch = "master" }
maintenance = { status = "actively-developed" }
[[bin]]
doc = false
name = "pomodoro"
path = "src/bin/pomodoro.rs"
[dependencies]
termion = "1.5.1"
tokio = "0.1.14"
notify-rust = "3.5.0"
structopt = "0.2.14"