mirror of
https://github.com/steel-dev/cli.git
synced 2026-09-14 20:47:34 +08:00
b4d4c0910e
* feat: initial * test: dynamic command retrieval * feat: profiles * feat: agent-browser integration * feat: flag parity * ci: distribution * fix: profile parameters * feat: cleanup * feat: forge * feat: profiles again * feat: more cleanup * chore: more cleanup * fix: short flag conflict * test: more tests * test: more compat test * test: even more tests
62 lines
1.3 KiB
TOML
62 lines
1.3 KiB
TOML
[package]
|
|
name = "steel-cli"
|
|
version = "0.3.0"
|
|
edition = "2024"
|
|
description = "Steel CLI - Browser automation for AI agents"
|
|
license = "MIT"
|
|
repository = "https://github.com/steel-dev/cli"
|
|
|
|
[lib]
|
|
name = "steel_cli"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "steel"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls", "multipart"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tokio = { version = "1", features = ["full"] }
|
|
anyhow = "1"
|
|
base64 = "0.22"
|
|
thiserror = "2"
|
|
dirs = "6"
|
|
open = "5"
|
|
dialoguer = "0.11"
|
|
indicatif = "0.17"
|
|
colored = "3"
|
|
urlencoding = "2"
|
|
url = "2"
|
|
rusqlite = { version = "0.33", features = ["bundled"] }
|
|
zip = { version = "2", default-features = false, features = ["deflate"] }
|
|
aes = "0.8"
|
|
cbc = "0.1"
|
|
pbkdf2 = "0.12"
|
|
sha1 = "0.10"
|
|
sha2 = "0.10"
|
|
hmac = "0.12"
|
|
|
|
# Browser engine
|
|
browser-engine = { git = "https://github.com/steel-dev/agent-browser", branch = "as-lib", package = "agent-browser" }
|
|
aes-gcm = "0.10"
|
|
getrandom = "0.3"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|
|
wiremock = "0.6"
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
lto = true
|
|
codegen-units = 1
|
|
strip = true
|
|
|
|
[profile.dist]
|
|
inherits = "release"
|
|
lto = "fat"
|
|
strip = true
|
|
codegen-units = 1
|