-
Notifications
You must be signed in to change notification settings - Fork 16
/
Cargo.toml
47 lines (44 loc) · 1.07 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "ttdl"
version = "4.4.1"
authors = ["Vladimir Markelov <[email protected]>"]
edition = "2021"
keywords = ["todotxt", "terminal", "cli", "todo", "tasks"]
license = "MIT"
description = "TTDL - Terminal ToDo List manager"
readme = "intro.md"
repository = "https://github.com/VladimirMarkelov/ttdl"
categories = ["command-line-utilities"]
[profile.release]
lto = true
strip = "debuginfo"
[dependencies]
todo_lib = "7.2.0"
getopts = "^0.2"
chrono = "^0.4"
textwrap = "^0.11"
lazy_static = "1"
caseless = "^0.2"
dirs = "5"
toml = "^0.7"
term_size = "^0.3"
termcolor = "1"
serde = "1"
serde_derive = "1"
json = "^0.12"
unicode-width="^0.1"
anyhow = "1"
[package.metadata.deb]
section = "utility"
depends = "$auto"
priority = "optional"
assets = [
["target/release/ttdl", "usr/bin/", "755"],
["LICENSE", "usr/share/doc/ttdl/", "644"],
["README.md", "usr/share/doc/ttdl/README", "644"],
["ttdl.toml", "usr/share/doc/ttdl/ttdl.toml", "644"],
]
extended-description = """\
A powerful terminal todo list manager. It keeps the list in todo.txt format.\
"""
changelog = "changelog"