hwt/Cargo.toml

25 lines
617 B
TOML
Raw Normal View History

[package]
2022-02-14 23:15:57 +03:00
name = "hwt_ui"
2022-02-18 10:28:51 +03:00
version = "0.2.0"
edition = "2021"
2022-02-14 23:24:34 +03:00
authors = ["Dmitriy Pleshevskiy <dmitriy@ideascup.me>"]
description = "healthy workaholic timer A tool that keeps you from breaking your health by working all day."
readme = "./readme.md"
repository = "https://github.com/pleshevskiy/hwt"
2022-02-15 10:27:36 +03:00
license = "MIT"
2022-02-14 23:24:34 +03:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2022-02-14 23:15:57 +03:00
[[bin]]
name = "hwt"
path = "src/main.rs"
[dependencies]
log = "0.4.14"
druid = "0.7.0"
druid-shell = "0.7.0"
rodio = "0.15.0"
serde = { version = "1.0.136", features = ["derive"] }
toml = "0.5.8"