-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (35 loc) · 1.13 KB
/
Cargo.toml
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
[package]
name = "provenance-mark"
version = "0.3.2"
edition = "2021"
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.16.0", features = ["multithreaded"] }
bc-rand = "^0.2.0"
sha2 = "^0.10.6"
hkdf = "^0.12.3"
bc-ur = "^0.6.0"
bc-envelope = {version = "^0.21.0", optional = true }
chrono = { version = "0.4", features = ["serde"] }
anyhow = "^1.0.0"
hex = { version = "^0.4.3", default-features = true }
chacha20 = "0.9.1"
rand_core = "0.6"
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 = "^0.4.1"
[features]
default = []
envelope = ["bc-envelope"]