-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (36 loc) · 1.13 KB
/
Cargo.toml
File metadata and controls
42 lines (36 loc) · 1.13 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
[workspace]
resolver = "2"
members = [
"crates/*",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
rust-version = "1.75"
license = "MIT"
repository = "https://github.com/edouard-music/test-framework"
[workspace.dependencies]
# Serialization
serde = { version = "1.0", features = ["derive"] }
# TODO [TECH-DEBT]: serde_yaml is unmaintained (dtolnay archived the repo).
# Migration alternatives to evaluate:
# - serde_yml (https://github.com/sebastienrousseau/serde_yml) - direct fork
# - yaml-rust2 + manual serde (more control, breaking change)
# Current version 0.9 is stable and functional. Plan migration when:
# - Security vulnerability is discovered, OR
# - Rust edition upgrade requires it, OR
# - New YAML features are needed
serde_yaml = "0.9"
serde_json = "1.0"
# Logging & Tracing
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["json", "env-filter", "fmt"] }
tracing-appender = "0.2"
# Error handling
thiserror = "2.0"
anyhow = "1.0"
# Security
keyring = { version = "3.6", features = ["sync-secret-service", "windows-native", "apple-native"] }
# Testing
assert_matches = "1.5"
tempfile = "3.10"