-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
22 lines (21 loc) · 747 Bytes
/
Cargo.toml
File metadata and controls
22 lines (21 loc) · 747 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "eph"
version = "0.1.0"
edition = "2024"
authors = ["Lucas McClean <lucas@mcclean.dev>"]
description = "A modal CLI todo built for quick task movement."
license = "MIT OR Apache-2.0"
repository = "https://github.com/lucasmcclean/eph"
categories = ["command-line-utilities"]
keywords = ["todo", "cli", "terminal"]
[dependencies]
chrono = { version = "0.4.44", features = ["serde"] }
clap = { version = "4.5.54", features = ["derive"] }
crossterm = "0.29.0"
directories = "6.0.0"
git2 = { version = "0.20.4", features = ["vendored-libgit2", "vendored-openssl"] }
ratatui = "0.30.0"
serde = { version = "1.0.228", features = ["derive"] }
tempfile = "3.25.0"
toml = "0.9.11"
uuid = { version = "1.20.0", features = ["serde", "v4"] }