-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
108 lines (90 loc) · 2.73 KB
/
Copy pathCargo.toml
File metadata and controls
108 lines (90 loc) · 2.73 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
[package]
name = "terraphim_validation"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
authors = ["Terraphim AI Team <team@terraphim.ai>"]
description = "Release validation system for Terraphim AI"
documentation = "https://terraphim.ai"
homepage = "https://terraphim.ai"
license = "MIT OR Apache-2.0"
repository = "https://github.com/terraphim/terraphim-ai"
keywords = ["validation", "release", "testing", "ci-cd"]
categories = ["development-tools", "development-tools::testing"]
readme = "../../README.md"
[dependencies]
# Core dependencies
tokio = { workspace = true, features = ["full"] }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
uuid = { workspace = true, features = ["v4", "serde"] }
chrono = { workspace = true, features = ["serde"] }
async-trait = { workspace = true }
thiserror = { workspace = true }
anyhow = { workspace = true }
log = { workspace = true }
reqwest = { workspace = true, features = ["json"] }
# Terraphim crates for testing
terraphim_config = { version = "1.20.2", registry = "terraphim" }
terraphim_types = { version = "1.20.2", registry = "terraphim" }
terraphim_server = { path = "../../terraphim_server" }
# Configuration and CLI
clap = { version = "4.0", features = ["derive", "env"] }
config = "0.15"
toml = "0.8"
env_logger = "0.11"
# HTTP and networking
axum = "0.7"
tower = "0.5"
tower-http = { version = "0.5", features = ["cors", "trace"] }
# Security and validation
sha2 = "0.10"
hex = "0.4"
# Testing and assertions
tempfile = { workspace = true }
assert_cmd = "2.0"
predicates = "3.0"
urlencoding = "2.1"
# mockall = "0.12"
# TUI testing dependencies
regex = "1.10"
sysinfo = "0.39"
term_size = "0.3"
# Additional dependencies for reporting and metadata
gethostname = "0.4"
os_info = "3.0"
rustc_version = "0.4"
serde_yaml = "0.9"
# Desktop UI testing dependencies
image = "0.24"
dirs = "5.0"
# Docker and container support
bollard = { version = "0.20", optional = true }
ahash = "0.8.12"
axum-test = "19.1.1"
# Platform-specific dependencies
[target.'cfg(unix)'.dependencies]
nix = { version = "0.28", optional = true }
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["winuser", "processenv"], optional = true }
[dev-dependencies]
tokio-test = "0.4"
# mockall = "0.12"
pretty_assertions = "1.0"
[[bin]]
name = "terraphim-validation"
path = "src/bin/terraphim-validation.rs"
[[bin]]
name = "terraphim-tui-tester"
path = "src/bin/terraphim-tui-tester.rs"
[[bin]]
name = "terraphim-desktop-ui-tester"
path = "src/bin/terraphim-desktop-ui-tester.rs"
[features]
default = ["full"]
full = ["docker", "performance"]
docker = ["bollard"]
performance = []
server-api-tests = []
desktop-ui-tests = []
release-integration-tests = []