-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (44 loc) · 1.3 KB
/
Cargo.toml
File metadata and controls
48 lines (44 loc) · 1.3 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
[package]
name = "provenance-mark"
version = "0.24.0"
edition = "2024"
description = "A cryptographically-secured system for establishing and verifying the authenticity of works"
authors = ["Blockchain Commons"]
repository = "https://github.com/BlockchainCommons/provenance-mark-rust"
readme = "README.md"
license = "BSD-2-Clause-Patent"
documentation = "https://docs.rs/provenance-mark"
keywords = [
"cryptography",
"provenance",
"copyright",
"blockchain",
] # Up to five
categories = [
"cryptography",
"authentication",
] # https://crates.io/category_slugs
[dependencies]
dcbor = { version = "^0.25.0", features = ["multithreaded"] }
bc-rand = "^0.5.0"
sha2 = "^0.10.6"
hkdf = "^0.12.3"
bc-ur = "^0.19.2"
bc-tags = "^0.12.0"
bc-envelope = { version = "^0.43.0", optional = true, default-features = false, features = ["known_value", "known-values-directory-loading", "types", "compress"] }
chrono = { version = "0.4", features = ["serde"] }
thiserror = "^2.0"
hex = { version = "^0.4.3", features = ["serde"] }
chacha20 = "0.9.1"
rand_core = "^0.9.3"
serde = { version = "^1.0.0", features = ["derive"] }
base64 = "^0.22.0"
serde_json = "^1.0.132"
url = "2.5.3"
[dev-dependencies]
indoc = "^2.0.0"
version-sync = "^0.9.0"
hex-literal = "^1.1.0"
[features]
default = ["envelope"]
envelope = ["bc-envelope"]