-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
76 lines (66 loc) · 1.6 KB
/
Cargo.toml
File metadata and controls
76 lines (66 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[package]
name = "steel-cli"
version = "0.3.5"
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.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"
tempfile = "3"
jiff = "0.2"
[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