-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (51 loc) · 1.49 KB
/
Cargo.toml
File metadata and controls
56 lines (51 loc) · 1.49 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
[package]
name = "escpe"
version = "1.0.0"
edition = "2021"
description = "Entanglement-Enhanced Supply-Chain Provenance Engine (E-SCPE)"
license = "LicenseRef-Proprietary"
readme = "README.md"
build = "build.rs"
[lib]
name = "escpe_core"
crate-type = ["rlib", "cdylib"]
[dependencies]
anyhow = "1"
base64 = "0.22"
clap = { version = "4", features = ["derive"] }
csv = "1"
ed25519-dalek = { version = "2", features = ["rand_core", "pkcs8"] }
pbkdf2 = "0.12"
hmac = "0.13"
hex = "0.4"
p256 = { version = "0.13", features = ["ecdsa", "pkcs8", "pem"] }
rand = "0.10"
rcgen = "0.14"
regex = "1"
# NOTE: `printpdf` 0.9+ removed the legacy PDF-writing APIs used by `src/report.rs`.
# Pin to a compatible series for the lightweight fallback PDF generator.
printpdf = "0.9"
rustls-pki-types = "1"
rusqlite = { version = "0.39", features = ["bundled-sqlcipher-vendored-openssl"] }
secrecy = "0.10"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha2 = "0.11"
thiserror = "2"
time = { version = "0.3", features = ["macros", "formatting", "serde"] }
toml = "1.1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt", "json"] }
uuid = { version = "1", features = ["v4", "serde"] }
x509-cert = { version = "0.2", features = ["pem"] }
x509-parser = "0.18"
zeroize = "1"
[target.'cfg(windows)'.dependencies]
winreg = "0.56"
[dev-dependencies]
criterion = { version = "0.8", features = ["html_reports"] }
libloading = "0.9"
tempfile = "3"
[[bench]]
name = "core_bench"
harness = false