-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
44 lines (39 loc) · 1.2 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
[package]
name = "rememberthemilk"
version = "0.4.4"
authors = ["Chris Emerson <[email protected]>"]
edition = "2021"
license = "MIT"
description = "Client library for the Remember The Milk todo list service."
homepage = "https://github.com/jugglerchris/rememberthemilk-rs"
repository = "https://github.com/jugglerchris/rememberthemilk-rs"
readme = "README.md"
keywords = ["todo", "rememberthemilk"]
categories = ["api-bindings", "command-line-utilities"]
[dependencies]
reqwest = "0.12"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
anyhow = "1.0"
md5 = "0.7"
chrono = {version = "0.4", features = ["serde"] }
structopt = "0.3"
confy = "0.6.0"
atty = "0.2"
termcolor = "1.4"
env_logger = "0.11.0"
log = "0.4.17"
ratatui = { version = "0.28", optional = true }
tui-tree-widget = { version = "0.22", optional = true }
crossterm = { version = "0.28", optional = true, features = ["event-stream"] }
tokio-stream = "0.1.12"
unicode-width = "0.1.10"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tokio = { version = "1.0", features = ["full"] }
[[bin]]
name = "rtm"
[features]
default = ["tui"]
tui = ["dep:ratatui", "dep:tui-tree-widget", "dep:crossterm"]
[dev-dependencies]
mockito = "1.2"