-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.test.toml
More file actions
24 lines (20 loc) · 653 Bytes
/
Cargo.test.toml
File metadata and controls
24 lines (20 loc) · 653 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
# Minimal test configuration for Stackdog security modules
# This Cargo.toml is for testing just the security modules without the web framework
[package]
name = "stackdog-security-test"
version = "0.1.0"
edition = "2021"
[dependencies]
# Core dependencies
chrono = { version = "0.4", features = ["serde"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
uuid = { version = "1", features = ["v4"] }
anyhow = "1"
thiserror = "1"
log = "0.4"
# Test dependencies
[dev-dependencies]
tokio = { version = "1", features = ["full"] }
# Note: This is for testing the security modules only
# The full application has additional dependencies