oj-submit 0.1.0

A fast, simple CLI for submitting solutions to the UVA Online Judge (onlinejudge.org)
[package]
name = "oj-submit"
version = "0.1.0"
edition = "2024"
rust-version = "1.85"
authors = ["Robin Quintero <rohaquinlop301@gmail.com>"]
description = "A fast, simple CLI for submitting solutions to the UVA Online Judge (onlinejudge.org)"
license = "MIT"
repository = "https://github.com/rohaquinlop/one-line-judge-submitter"
homepage = "https://github.com/rohaquinlop/one-line-judge-submitter"
documentation = "https://docs.rs/oj-submit"
readme = "README.md"
keywords = ["onlinejudge", "uva", "competitive", "cli", "judge"]
categories = ["command-line-utilities", "development-tools"]

[dependencies]
reqwest = { version = "0.12", features = ["cookies", "rustls-tls", "multipart", "json"] }
scraper = "0.22"
clap = { version = "4", features = ["derive"] }
home = "0.5"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["full"] }
indicatif = "0.17"
colored = "2"
anyhow = "1"
thiserror = "2"
regex = "1"
rpassword = "7"