[package]
name = "tangled-cli"
version.workspace = true
edition.workspace = true
authors.workspace = true
rust-version.workspace = true
description = "CLI for interacting with Tangled, an AT Protocol-based git collaboration platform"
license.workspace = true
repository.workspace = true
homepage.workspace = true
readme = "README.md"
keywords = ["tangled", "atproto", "git", "cli", "decentralized"]
categories = ["command-line-utilities", "development-tools"]
publish = ["crates-io"]
autobins = false
[[bin]]
name = "tang"
path = "src/main.rs"
[dependencies]
anyhow = { workspace = true }
clap = { workspace = true, features = ["derive", "env", "unicode", "wrap_help"] }
colored = { workspace = true }
color-eyre = { workspace = true }
human-panic = { workspace = true }
indicatif = { workspace = true }
inquire = { workspace = true }
tabled = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
serde_yaml = { workspace = true }
tokio = { workspace = true, features = ["full"] }
git2 = { workspace = true }
url = { workspace = true }
tokio-tungstenite = { workspace = true }
futures-util = { workspace = true }
chrono = { workspace = true }
flate2 = { workspace = true }
reqwest = { workspace = true }
base64 = { workspace = true }
p256 = { version = "0.13", features = ["ecdsa"] }
rand = "0.8"
sha2 = "0.10"
open = "5"
tangled-config = { version = "0.1.0", path = "../tangled-config" }
tangled-api = { version = "0.1.0", path = "../tangled-api" }
[dev-dependencies]
tempfile = { workspace = true }
mockito = { workspace = true }