-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (38 loc) · 1.02 KB
/
Cargo.toml
File metadata and controls
41 lines (38 loc) · 1.02 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
[package]
name = "verifyos-cli"
version = "0.13.1"
edition = "2021"
authors = ["0xboji"]
description = "AI agent-friendly Rust CLI for scanning iOS app bundles for App Store rejection risks before submission."
license = "MIT"
repository = "https://github.com/0xBoji/verifyOS"
homepage = "https://github.com/0xBoji/verifyOS"
readme = "README.md"
keywords = ["ai", "ai-agent", "ios", "appstore", "security"]
categories = ["command-line-utilities", "development-tools"]
autobins = false
[[bin]]
name = "voc"
path = "src/main.rs"
[dependencies]
# CLI Frontend
clap = { version = "4.5", features = ["derive"] }
miette = { version = "7.2", features = ["fancy"] }
indicatif = "0.17"
comfy-table = "7.1"
colored = "2.1"
textwrap = "0.16.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
tower-lsp = "0.20"
tokio = { version = "1.0", features = ["full"] }
# Engine & Parsers
thiserror = "2.0.18"
apple-codesign = "0.27"
plist = "1.6"
zip = "0.6"
goblin = "0.8"
tempfile = "3.26.0"
xcodeproj = "0.3.0"
rayon = "1.11.0"