-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (31 loc) · 868 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
33
[package]
name = "tada"
description = "a todo list manager"
version = "0.1.2"
authors = [ "Toby Inkster <[email protected]>" ]
edition = "2021"
repository = "https://github.com/tobyink/rust-tada"
license = "MIT OR Apache-2.0 OR GPL-2.0-or-later"
readme = "README.md"
keywords = [ "todotxt", "todo", "task" ]
categories = [ "command-line-utilities" ]
[package.metadata.deb]
assets = [
[ "README.md", "usr/share/doc/tada/README", "644" ],
[ "changelog.md", "usr/share/doc/tada/changelog", "644" ],
]
[dependencies]
regex = "1.7"
chrono = "0.4"
tempfile = "3.5.0"
lazy_static = "1.4.0"
console = "0.15.5"
substring = "1.4.0"
clap = { version = "4.1.14", features = ["wrap_help"] }
freezebox = "0.2.3"
url = "2.3.1"
promptly = "0.3.1"
rand = "0.8.5"
reqwest = { version = "0.11.16", features = ["blocking"] }
date_time_parser = "0.2.0"
path-absolutize = "3.0.14"