-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (56 loc) · 1.61 KB
/
Cargo.toml
File metadata and controls
71 lines (56 loc) · 1.61 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
[workspace]
resolver = "2"
members = ["blsmesh-core", "blsmesh-signals", "blsmesh-scenario", "blsmesh-agents", "blsmesh-judgment", "blsmesh-report", "blsmesh-corpus", "blsmesh-cli", "tests"]
[workspace.package]
version = "0.1.0"
edition = "2024"
rust-version = "1.85"
authors = ["BLSMESH Contributors"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/copyleftdev/blsmesh"
description = "Distributed adversarial behavioral security evaluation for LLMs"
[workspace.dependencies]
# SMESH integration
smesh-core = { path = "../smesh/smesh-core" }
smesh-agent = { path = "../smesh/smesh-agent" }
smesh-runtime = { path = "../smesh/smesh-runtime" }
# Core
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
thiserror = "2.0"
# Crypto (for Ed25519 signing - RFC-004 Section 13)
ed25519-dalek = { version = "2.1", features = ["serde", "rand_core"] }
sha2 = "0.10"
hex = "0.4"
rand = "0.8"
# Caching (for replay protection)
lru = "0.12"
# Async
tokio = { version = "1.35", features = ["full"] }
futures = "0.3"
async-trait = "0.1"
# Time
chrono = { version = "0.4", features = ["serde"] }
# Identifiers
uuid = { version = "1.6", features = ["v4", "serde"] }
# Templates
handlebars = "6"
# Tracing
tracing = "0.1"
# CLI
clap = { version = "4.5", features = ["derive"] }
# CSV
csv = "1.3"
[workspace.lints.rust]
unsafe_code = "forbid"
[workspace.lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
unwrap_used = "warn"
expect_used = "warn"
[profile.release]
lto = true
codegen-units = 1
panic = "abort"