mirror of
https://github.com/kdheepak/taskwarrior-tui.git
synced 2025-08-23 11:07:45 +02:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps the cargo-dependencies group with 4 updates: [clap](https://github.com/clap-rs/clap), [regex](https://github.com/rust-lang/regex), [unicode-width](https://github.com/unicode-rs/unicode-width) and [clap_complete](https://github.com/clap-rs/clap). Updates `clap` from 4.5.4 to 4.5.7 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.4...v4.5.7) Updates `regex` from 1.10.4 to 1.10.5 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.10.4...1.10.5) Updates `unicode-width` from 0.1.12 to 0.1.13 - [Commits](https://github.com/unicode-rs/unicode-width/compare/v0.1.12...v0.1.13) Updates `clap_complete` from 4.5.2 to 4.5.5 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.2...clap_complete-v4.5.5) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-dependencies - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-dependencies - dependency-name: unicode-width dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-dependencies - dependency-name: clap_complete dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
63 lines
1.6 KiB
TOML
63 lines
1.6 KiB
TOML
[package]
|
|
name = "taskwarrior-tui"
|
|
version = "0.26.3"
|
|
license = "MIT"
|
|
description = "A Taskwarrior Terminal User Interface"
|
|
repository = "https://github.com/kdheepak/taskwarrior-tui/"
|
|
homepage = "https://kdheepak.com/taskwarrior-tui"
|
|
readme = "README.md"
|
|
authors = ["Dheepak Krishnamurthy <me@kdheepak.com>"]
|
|
edition = "2018"
|
|
keywords = ["taskwarrior", "tui"]
|
|
categories = ["command-line-utilities"]
|
|
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.86"
|
|
better-panic = "0.3.0"
|
|
cassowary = "0.3.0"
|
|
chrono = "0.4.38"
|
|
clap = { version = "4.5.7", features = ["derive"] }
|
|
crossterm = { version = "0.27.0", features = ["event-stream"] }
|
|
dirs = "5.0.1"
|
|
futures = "0.3.30"
|
|
itertools = "0.13.0"
|
|
lazy_static = "1.4.0"
|
|
log = "0.4.21"
|
|
log4rs = "1.3.0"
|
|
path-clean = "1.0.1"
|
|
rand = "0.8.5"
|
|
regex = "1.10.5"
|
|
rustyline = { version = "14.0.0", features = ["with-file-history", "derive"] }
|
|
serde = { version = "1.0.193", features = ["derive"] }
|
|
serde_json = "1.0.109"
|
|
shellexpand = "3.1.0"
|
|
shlex = "1.3.0"
|
|
task-hookrs = "0.9.0"
|
|
tokio = { version = "1.38.0", features = ["full"] }
|
|
tokio-stream = "0.1.15"
|
|
ratatui = "0.26"
|
|
unicode-segmentation = "1.11.0"
|
|
unicode-truncate = "1.0.0"
|
|
unicode-width = "0.1.13"
|
|
uuid = { version = "1.8.0", features = ["serde", "v4"] }
|
|
versions = "6.2.0"
|
|
|
|
[package.metadata.rpm]
|
|
package = "taskwarrior-tui"
|
|
|
|
[package.metadata.rpm.cargo]
|
|
buildflags = ["--release"]
|
|
|
|
[package.metadata.rpm.targets]
|
|
taskwarrior-tui = { path = "/usr/bin/taskwarrior-tui" }
|
|
|
|
[profile.release]
|
|
debug = 1
|
|
incremental = true
|
|
lto = "fat"
|
|
|
|
[build-dependencies]
|
|
clap = { version = "4.5.7", features = ["derive"] }
|
|
clap_complete = "4.5.5"
|
|
shlex = "1.3.0"
|