tranc-cli 0.1.1

Tranc CLI — trade indicator queries from the command line.
[package]
name = "tranc-cli"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
authors.workspace = true
description = "Tranc CLI — trade indicator queries from the command line."

[[bin]]
name = "tranc"
path = "src/main.rs"

[dependencies]
# Arg parsing
clap = { version = "4", features = ["derive", "env"] }

# HTTP client (rustls so we get the same TLS stack as the API)
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }

# Async runtime
tokio = { version = "1", features = ["full"] }

# Serialisation
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"

# OS keyring (macOS Keychain, Linux Secret Service, Windows Credential Manager)
keyring = { version = "3", features = ["apple-native", "linux-native", "windows-native"] }

# Pretty printing
colored_json = "5"
comfy-table = "7"

# Error handling
anyhow = "1"

# Open browser for Clerk OAuth
open = "5"

# Config directory
dirs = "5"

# URL percent-encoding for bug-report query parameters
urlencoding = "2"