-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 850 Bytes
/
Copy pathCargo.toml
File metadata and controls
33 lines (30 loc) · 850 Bytes
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
[package]
name = "ai-tester"
version = "1.2.0"
edition = "2021"
rust-version = "1.82"
license = "MIT"
description = "Native Rust behavioral test harness for agent skills and prompts"
repository = "https://github.com/lee-to/ai-tester"
[[bin]]
name = "ai-tester"
path = "src/main.rs"
[dependencies]
anyhow = "1.0"
camino = { version = "1.2", features = ["serde1"] }
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "=4.5.50", features = ["derive"] }
futures = "0.3"
owo-colors = "4.3"
regex = "1.12"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.10"
tempfile = "=3.13.0"
thiserror = "2.0"
tokio = { version = "1.52", features = ["io-util", "macros", "process", "rt-multi-thread", "sync", "time"] }
walkdir = "2.5"
yaml_serde = "0.10"
[dev-dependencies]
assert_cmd = "=2.1.1"
predicates = "3.1"