[package]
edition = "2021"
name = "pi-workflows"
version = "0.16.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Terminal client and live relay for hosted pi-workflows state"
homepage = "https://github.com/osolmaz/pi-workflows"
documentation = "https://docs.rs/pi-workflows"
readme = "README.md"
keywords = [
"workflow",
"terminal",
"replay",
"pi",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/osolmaz/pi-workflows"
[lib]
name = "piw"
path = "src/lib.rs"
[[bin]]
name = "piw"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "parity"
path = "tests/parity.rs"
[[test]]
name = "protocol"
path = "tests/protocol.rs"
[dependencies.anyhow]
version = "1"
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
features = [
"std",
"clock",
"serde",
]
default-features = false
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.crossterm]
version = "0.29"
features = ["event-stream"]
[dependencies.futures-util]
version = "0.3"
[dependencies.ratatui]
version = "0.30"
[dependencies.ryu-js]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
features = [
"float_roundtrip",
"preserve_order",
]
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"fs",
"io-util",
"macros",
"net",
"rt-multi-thread",
"sync",
"time",
]
[dependencies.tokio-tungstenite]
version = "0.30"
[dependencies.toml]
version = "0.9"
[dependencies.toml_edit]
version = "0.23"
[dependencies.unicode-width]
version = "0.2"
[dev-dependencies.tempfile]
version = "3"
[profile.release]
lto = true