[package]
edition = "2024"
rust-version = "1.88"
name = "shipflow"
version = "0.1.4"
authors = ["Arya Gorjipour"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A minimalist, git-aware CLI for tracking what you ship"
homepage = "https://github.com/Aryagorjipour/shipflow"
documentation = "https://docs.rs/shipflow"
readme = "README.md"
keywords = [
"cli",
"productivity",
"git",
"shipping",
]
categories = ["command-line-utilities"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Aryagorjipour/shipflow"
[features]
default = ["tui"]
tui = [
"dep:ratatui",
"dep:crossterm",
]
[lib]
name = "shipflow"
path = "src/lib.rs"
[[bin]]
name = "shipflow"
path = "src/main.rs"
[[test]]
name = "cli_add"
path = "tests/cli_add.rs"
[[test]]
name = "cli_done"
path = "tests/cli_done.rs"
[[test]]
name = "cli_list"
path = "tests/cli_list.rs"
[[test]]
name = "cli_report"
path = "tests/cli_report.rs"
[[test]]
name = "storage_modes"
path = "tests/storage_modes.rs"
[dependencies.anyhow]
version = "1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.clap_complete]
version = "4.5"
[dependencies.comfy-table]
version = "7"
[dependencies.crossterm]
version = "0.29"
optional = true
[dependencies.directories]
version = "6"
[dependencies.owo-colors]
version = "4"
[dependencies.ratatui]
version = "0.30"
optional = true
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.ulid]
version = "1"
features = ["serde"]
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.assert_fs]
version = "1"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
expect_used = "deny"
unwrap_used = "deny"
[profile.dist]
lto = "thin"
inherits = "release"