Files
steel-dev__cli/Cargo.toml
dependabot[bot] 43ee8bf9f6 chore(deps): bump clap from 4.6.0 to 4.6.1 (#83)
Bumps [clap](https://github.com/clap-rs/clap) from 4.6.0 to 4.6.1.
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.6.0...clap_complete-v4.6.1)

---
updated-dependencies:
- dependency-name: clap
  dependency-version: 4.6.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-09-10 18:37:13 +09:00

85 lines
1.9 KiB
TOML

[package]
name = "steel-cli"
version = "0.5.0-preview.1"
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.6", features = ["derive"] }
clap_complete = "4.5"
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.12"
urlencoding = "2"
url = "2"
rusqlite = { version = "0.39", features = ["bundled"] }
zip = { version = "8", 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.4"
libc = "0.2"
rustix = { version = "1", features = ["termios"] }
tempfile = "3"
jiff = "0.2"
parking_lot = "0.12"
serde_yaml = "0.9"
tokio-tungstenite = { version = "0.29.0", features = ["rustls-tls-webpki-roots"] }
futures-util = "0.3.32"
russh = { version = "0.63", default-features = false, features = ["ring", "flate2", "rsa"] }
[dev-dependencies]
wiremock = "0.6"
proptest = "1"
proptest-derive = "0.8"
[lints.rust]
unsafe_code = "deny"
[lints.clippy]
all = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
redundant_clone = "deny"
# tokio async fns don't need Send bounds
future_not_send = "allow"
# if-let is often more readable than map_or_else
option_if_let_else = "allow"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true
[profile.dist]
inherits = "release"
lto = "fat"
strip = true
codegen-units = 1