mirror of
https://github.com/kdheepak/taskwarrior-tui.git
synced 2025-08-24 23:46:41 +02:00
fix: build on windows 🐛
This commit is contained in:
parent
4f9c0df63a
commit
9242fe1b89
2 changed files with 3 additions and 5 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -300,12 +300,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "f476fe445d41c9e991fd07515a6f463074b782242ccf4a5b7b1d1012e70824df"
|
checksum = "f476fe445d41c9e991fd07515a6f463074b782242ccf4a5b7b1d1012e70824df"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitflags 2.4.0",
|
"bitflags 2.4.0",
|
||||||
|
"crossterm_winapi",
|
||||||
"futures-core",
|
"futures-core",
|
||||||
"libc",
|
"libc",
|
||||||
"mio",
|
"mio",
|
||||||
"parking_lot",
|
"parking_lot",
|
||||||
"signal-hook",
|
"signal-hook",
|
||||||
"signal-hook-mio",
|
"signal-hook-mio",
|
||||||
|
"winapi",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
|
|
@ -11,10 +11,6 @@ edition = "2018"
|
||||||
keywords = ["taskwarrior", "tui"]
|
keywords = ["taskwarrior", "tui"]
|
||||||
categories = ["command-line-utilities"]
|
categories = ["command-line-utilities"]
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
||||||
[features]
|
|
||||||
default = ["crossterm-backend"]
|
|
||||||
crossterm-backend = ["tui/crossterm", "crossterm"]
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1.0.75"
|
anyhow = "1.0.75"
|
||||||
|
@ -22,7 +18,7 @@ better-panic = "0.3.0"
|
||||||
cassowary = "0.3.0"
|
cassowary = "0.3.0"
|
||||||
chrono = "0.4.26"
|
chrono = "0.4.26"
|
||||||
clap = { version = "4.4.0", features = ["derive"] }
|
clap = { version = "4.4.0", features = ["derive"] }
|
||||||
crossterm = { version = "0.27.0", optional = true, default-features = false, features = [
|
crossterm = { version = "0.27.0", features = [
|
||||||
"event-stream",
|
"event-stream",
|
||||||
] }
|
] }
|
||||||
dirs = "5.0.1"
|
dirs = "5.0.1"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue