-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
79 lines (68 loc) · 1.92 KB
/
Cargo.toml
File metadata and controls
79 lines (68 loc) · 1.92 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[package]
name = "atlas-cli"
version = "0.2.0"
edition = "2024"
description = "Machine Learning Lifecycle & Transparency Manager - Create and verify manifests for ML models and datasets"
documentation = "https://docs.rs/atlas-cli"
homepage = "https://github.com/IntelLabs/atlas-cli"
repository = "https://github.com/IntelLabs/atlas-cli"
readme = "README.md"
license = "Apache-2.0"
keywords = ["c2pa", "machine-learning", "provenance", "transparency", "cli"]
categories = ["command-line-utilities", "science", "cryptography"]
autoexamples = false
exclude = [
"/.github/*",
"/examples/*",
"/tests/*",
"/.gitignore",
"/Makefile",
]
[workspace]
members = ["."]
exclude = ["examples"]
[[bin]]
name = "atlas-cli"
path = "src/main.rs"
[features]
default = []
yaml = []
with-tdx = ["tdx_workload_attestation/host-gcp-tdx"]
[dependencies]
atlas-c2pa-lib = { version = "0.1.2" }
# Attestations
tdx_workload_attestation = { version = "0.1.0", default-features = false }
in_toto_attestation = { version = "0.1.0" }
# Core libraries
base64 = "0.22"
chrono = "0.4.44" # For timestamp generation in mock attestation reports
env_logger = "0.11"
hex = "0.4"
indicatif = "0.18"
lazy_static = "1.4"
log = "0.4"
openssl = "0.10.76"
sha2 = "0.10"
thiserror = "2.0.18"
time = { version = "0.3", features = ["serde"] }
uuid = { version = "1.22", features = ["v4"] }
walkdir = "2.4"
zeroize = { version = "1.8", features = ["derive"] }
# CLI and async/runtime
clap = { version = "4.5", features = ["derive"] }
tokio = "1.50.0"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_cbor = "0.11"
serde_json = "1.0"
serde_with = { version = "3.18.0", features = ["base64"] }
serde_yaml = "0.9"
protobuf = "3.7.2"
protobuf-json-mapping = "3.7.2"
# HTTP client
reqwest = { version = "0.13.2", features = ["blocking", "json"] }
subtle = "2.6.1"
[dev-dependencies]
tempfile = "3.26.0"
[profile.release.build-override]
debug-assertions = true