mirror of
https://github.com/kdheepak/taskwarrior-tui.git
synced 2025-08-24 05:26:42 +02:00
feat: Fix calendar ✨
This commit is contained in:
parent
01c248d52d
commit
8548bd170b
6 changed files with 159 additions and 253 deletions
24
Cargo.toml
24
Cargo.toml
|
@ -17,15 +17,15 @@ default = ["crossterm-backend"]
|
|||
crossterm-backend = ["tui/crossterm", "crossterm"]
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0.70"
|
||||
anyhow = "1.0.71"
|
||||
better-panic = "0.3.0"
|
||||
cassowary = "0.3.0"
|
||||
chrono = "0.4.24"
|
||||
clap = { version = "4.2.1", features = ["derive"] }
|
||||
clap = { version = "4.3.0", features = ["derive"] }
|
||||
crossterm = { version = "0.26.1", optional = true, default-features = false, features = [
|
||||
"event-stream",
|
||||
] }
|
||||
dirs = "5.0.0"
|
||||
dirs = "5.0.1"
|
||||
futures = "0.3.28"
|
||||
itertools = "0.10.5"
|
||||
lazy_static = "1.4.0"
|
||||
|
@ -33,20 +33,20 @@ log = "0.4.17"
|
|||
log4rs = "1.2.0"
|
||||
path-clean = "1.0.1"
|
||||
rand = "0.8.5"
|
||||
regex = "1.7.3"
|
||||
regex = "1.8.3"
|
||||
rustyline = { version = "11.0.0", features = ["with-file-history", "derive"] }
|
||||
serde = { version = "1.0.159", features = ["derive"] }
|
||||
serde_json = "1.0.95"
|
||||
serde = { version = "1.0.163", features = ["derive"] }
|
||||
serde_json = "1.0.96"
|
||||
shellexpand = "3.1.0"
|
||||
shlex = "1.1.0"
|
||||
task-hookrs = { version = "0.8.0" }
|
||||
tokio = { version = "1.27.0", features = ["full"] }
|
||||
tokio-stream = "0.1.12"
|
||||
task-hookrs = { git = "https://github.com/kdheepak/task-hookrs" }
|
||||
tokio = { version = "1.28.1", features = ["full"] }
|
||||
tokio-stream = "0.1.14"
|
||||
tui = { package = "ratatui", version = "0.20.1" }
|
||||
unicode-segmentation = "1.10.1"
|
||||
unicode-truncate = "0.2.0"
|
||||
unicode-width = "0.1.10"
|
||||
uuid = { version = "1.3.1", features = ["serde", "v4"] }
|
||||
uuid = { version = "1.3.3", features = ["serde", "v4"] }
|
||||
versions = "4.1.0"
|
||||
|
||||
[package.metadata.rpm]
|
||||
|
@ -64,6 +64,6 @@ incremental = true
|
|||
lto = "off"
|
||||
|
||||
[build-dependencies]
|
||||
clap = { version = "4.2.1", features = ["derive"] }
|
||||
clap_complete = "4.2.0"
|
||||
clap = { version = "4.3.0", features = ["derive"] }
|
||||
clap_complete = "4.3.0"
|
||||
shlex = "1.1.0"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue