-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (28 loc) · 1.41 KB
/
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 = "procrastinator"
description = "Helps getting things done with ToDo-Lists, Calendar, Bucket-Lists, … and some gamification."
version = "0.1.0"
authors = [
"Sebastian Walz <[email protected]>",
]
edition = "2018"
license = "MIT"
repository = "https://github.com/sivizius/procrastinator"
[dependencies]
async-std = "1.4"
futures = "0.3"
http-async = { version = "0.1", path = "http-async" }
ron = "0.5"
serde = "1.0"
serde_json = "1.0"
typed-html = "0.2"
[lib]
path = "source/lib.rs"
[[bin]]
name = "service"
path = "source/service.rs"
doc = true
[[bin]]
name = "cli"
path = "source/cli.rs"
doc = false