forked from veraison/corim-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (40 loc) · 1.1 KB
/
Copy pathCargo.toml
File metadata and controls
42 lines (40 loc) · 1.1 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
[package]
name = "corim-rs"
version = "0.2.0"
authors = ["Larry Dewey <larrydewey@proton.me>"]
homepage = "https://github.com/larrydewey/corim-rs"
repository = "https://github.com/larrydewey/corim-rs"
edition = "2021"
description = "Rust implementation of CORIM (Concise Reference Integrity Manifest)"
keywords = ["corim", "rim", "ietf", "cbor", "cose"]
categories = [
"os",
"os::linux-apis",
"parsing",
"network-programming",
"hardware-support",
]
exclude = [".gitignore", ".github/*"]
rust-version = "1.85.0"
license = "MIT"
[dependencies]
serde = { version = "^1", features = ["derive"] }
ciborium = { version = "^0.2" }
derive_more = { version = "^2", features = [
"try_from",
"from",
"as_ref",
"deref",
"deref_mut",
"constructor",
] }
base64 = "0.22.1"
oid = { version = "0.2.1", features = ["serde", "serde_support"] }
uuid = "1.16.0"
serde_json = {version = "1.0.140", features = [
"raw_value",
"arbitrary_precision",
]}
coset = { version = "0.3.8", features = ["std"] }
openssl = { version = "0.10.79", features = ["vendored"], optional=true}
either = "1.15.0"