-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
36 lines (33 loc) · 1 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
[package]
name = "bc-components"
version = "0.15.0"
edition = "2021"
description = "Secure Components for Rust."
authors = ["Blockchain Commons"]
repository = "https://github.com/BlockchainCommons/bc-components-rust"
readme = "README.md"
license = "BSD-2-Clause-Patent"
documentation = "https://docs.rs/bc-components"
keywords = ["cryptography"] # Up to five
categories = ["cryptography"] # https://crates.io/category_slugs
[dependencies]
bc-crypto = "^0.5.0"
bc-rand = "^0.2.0"
dcbor = "^0.16.0"
bc-ur = "^0.6.0"
sskr = "^0.4.0"
hex = "^0.4.3"
miniz_oxide = "^0.7.1"
paste = "^1.0.12"
anyhow = "^1.0.0"
url = "^2.4.1"
ssh-key = { version = "=0.6.6", default-features = false, features = ["dsa", "ecdsa", "rand_core", "std", "crypto"] }
zeroize = { version = "1.8.1", default-features = false, features = ["alloc", "zeroize_derive"] }
rand_core = "0.6.4"
pqcrypto-kyber = "^0.8.1"
pqcrypto-dilithium = "^0.5.0"
pqcrypto-traits = "^0.3.5"
[dev-dependencies]
hex-literal = "^0.4.1"
indoc = "^2.0.0"
version-sync = "^0.9.0"