Skip to content

Commit e97eee2

Browse files
authored
Add Cargo.toml dependencies to README
Added Cargo.toml dependencies section with required libraries.
1 parent 8dd0475 commit e97eee2

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

readme.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,19 @@
3232
1. FIDO2/YubiKey support for auth and container unlocking
3333
2. Signed update mechanism with reproducible build verification
3434
3. Panic wipe for emergency session termination
35+
36+
---
37+
38+
## Cargo.toml Dependencies
39+
```
40+
[dependencies]
41+
clap = { version = "4.5", features = ["derive"] }
42+
serde = { version = "1.0", features = ["derive"] }
43+
serde_json = "1.0"
44+
sha2 = "0.10"
45+
chrono = { version = "0.4", features = ["serde"] }
46+
uuid = { version = "1.10", features = ["v4", "serde"] }
47+
hex = "0.4"
48+
winapi = { version = "0.3", features = ["jobapi2", "winnt", "securitybaseapi"] }
49+
ring = "0.17" # For cryptographic operations
50+
```

0 commit comments

Comments
 (0)