[package]
name = "stepshots-cli"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
description = "CLI for recording, bundling, and uploading Stepshots demos"
[[bin]]
name = "stepshots"
path = "src/main.rs"
[dependencies]
manifest = { path = "../manifest", version = "1.0.1", package = "stepshots-manifest" }
clap = { version = "4", features = ["derive", "env"] }
tokio = { version = "1", features = ["rt-multi-thread", "macros", "time", "signal"] }
futures = "0.3"
chromiumoxide = "0.9"
serde = { workspace = true }
serde_json = { workspace = true }
zip = { version = "8.2", default-features = false, features = ["deflate"] }
reqwest = { version = "0.12", default-features = false, features = ["multipart", "rustls-tls", "json"] }
axum = "0.8"
tower-http = { version = "0.6", features = ["cors"] }
indicatif = "0.17"
console = "0.15"
thiserror = { workspace = true }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
chrono = { version = "0.4", default-features = false, features = ["clock"] }
dotenvy = "0.15.7"
semver = "1"