-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
88 lines (73 loc) · 1.98 KB
/
Copy pathCargo.toml
File metadata and controls
88 lines (73 loc) · 1.98 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
77
78
79
80
81
82
83
84
85
86
87
88
[workspace]
members = [
"chaos_core",
"chaos_scenarios",
"chaos_metrics",
"chaos_cli",
"chaos_targets",
"chaos_web",
"scenario-packs",
]
resolver = "2"
[workspace.package]
version = "0.2.1"
edition = "2021"
rust-version = "1.82"
authors = ["Ninian-Lemain"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Ninian-Lemain/chaos-engineering-rs"
homepage = "https://github.com/Ninian-Lemain/chaos-engineering-rs"
readme = "README.md"
[workspace.dependencies]
# Async runtime
tokio = { version = "1.35", features = ["full"] }
tokio-util = { version = "0.7", features = ["full"] }
# Web frameworks
axum = { version = "0.7", features = ["ws", "macros"] }
hyper = { version = "1.0", features = ["full"] }
tonic = { version = "0.11", features = ["transport", "tls"] }
actix-web = "4.4"
actix-rt = "2.9"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
toml = "0.8"
# CLI
clap = { version = "4.5", features = ["derive", "cargo", "env"] }
colored = "2.1"
indicatif = { version = "0.17", features = ["rayon"] }
# Metrics and observability
prometheus = { version = "0.13", features = ["process"] }
metrics = "0.22"
metrics-exporter-prometheus = "0.13"
# Chaos primitives
libc = "0.2"
nix = { version = "0.27", features = ["signal", "process", "sched", "fs"] }
rand = { version = "0.8", features = ["std_rng"] }
rand_distr = "0.4"
# Network manipulation
pnet = "0.34"
socket2 = "0.5"
# Async utilities
futures = "0.3"
async-trait = "0.1"
# Logging and tracing
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
tracing-appender = "0.2"
# Time and duration
chrono = { version = "0.4", features = ["serde"] }
humantime = "2.1"
# Error handling
anyhow = "1.0"
thiserror = "1.0"
# System information
sysinfo = "0.30"
# Report generation
tera = "1.19"
tabled = "0.15"
# Testing
criterion = { version = "0.5", features = ["async_tokio", "html_reports"] }
mockall = "0.12"
proptest = "1.4"