-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (46 loc) · 1.33 KB
/
Copy pathCargo.toml
File metadata and controls
54 lines (46 loc) · 1.33 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
[package]
name = "rust-secure-logger"
version = "2.0.0"
edition = "2021"
authors = ["Tony Chuks Awunor <chuksawunor@guardsarm.com>"]
description = "Memory-safe security logging for financial systems and critical infrastructure with encryption, log forwarding, and compliance automation"
license = "MIT"
repository = "https://github.com/guardsarm/rust-secure-logger"
keywords = ["security", "logging", "audit", "financial", "memory-safe"]
categories = ["development-tools::debugging", "cryptography"]
readme = "README.md"
[features]
default = ["encryption", "compression"]
encryption = []
compression = []
async-logging = ["tokio"]
metrics = []
[dependencies]
chrono = { version = "0.4", features = ["serde"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.10"
sha3 = "0.10"
aes-gcm = "0.10"
flate2 = "1.0"
base64 = "0.21"
uuid = { version = "1.6", features = ["v4"] }
tokio = { version = "1.35", features = ["full"], optional = true }
thiserror = "1.0"
regex = "1.10"
rand = "0.8"
[dev-dependencies]
tempfile = "3.8"
criterion = "0.5"
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
[[example]]
name = "audit_trail"
path = "examples/audit_trail.rs"
[[example]]
name = "compliance_report"
path = "examples/compliance_report.rs"
[[example]]
name = "siem_integration"
path = "examples/siem_integration.rs"