mirror of
https://github.com/flakestorm/flakestorm.git
synced 2026-05-17 13:55:12 +02:00
- Add 5 mutation types (paraphrase, noise, tone_shift, prompt_injection, custom) - Cap mutations at 50 per test run - Force sequential execution only - Disable GitHub Actions integration (Cloud feature) - Add upgrade prompts throughout CLI - Update README with feature comparison - Add limits.py module for centralized limit management - Add cloud and limits CLI commands - Update all documentation with Cloud upgrade messaging
17 lines
428 B
TOML
17 lines
428 B
TOML
[workspace]
|
|
members = ["rust"]
|
|
resolver = "2"
|
|
|
|
[workspace.package]
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
authors = ["Entropix Team"]
|
|
repository = "https://github.com/entropix/entropix"
|
|
|
|
[workspace.dependencies]
|
|
pyo3 = { version = "0.20", features = ["extension-module"] }
|
|
rayon = "1.8.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
tokio = { version = "1.35", features = ["full"] }
|