-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
33 lines (28 loc) · 876 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
[package]
name = "timeplot"
version = "0.8.4"
description = "Personal activity tracker & graph plotter"
edition = "2018"
authors = [
"Vasya Novikov <n1dr+cm3513git@ya.ru>",
"jbpratt <29494941+jbpratt78@users.noreply.github.com>"
]
license="GPL-3.0-or-later"
keywords = ["graph", "plot", "time", "tracker", "logger"]
repository = "https://github.com/vn971/timeplot"
readme = "README.md"
[dependencies]
chrono = { version = "0.4.24", default-features = false, features = ["clock"] }
config = { version = "0.13.3", default-features = false, features = ["toml"] }
directories = "4.0.1"
env_logger = "0.10.0"
fs2 = "0.4.3"
gnuplot = "0.0.37"
lazy_static = "1.4.0"
log = "0.4.17"
open = "4.0.0"
structopt = { version = "0.3.26", features = ["color"] }
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.9", features = ["winuser"] }
[profile.release]
lto = true