-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
40 lines (32 loc) · 948 Bytes
/
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
40
[package]
name = "leslie_lamport"
version = "0.4.0"
authors = ["0xAtropine"]
edition = "2018"
description = "A Post-Quantum Cryptographic Library For Lamport Signatures"
repository = "https://github.com/0xAtropine/Leslie-Lamport"
keywords = ["crypto", "cryptography", "post-quantum", "security", "signature"]
categories = ["cryptography", "authentication","algorithms"]
license = "MIT OR Apache-2.0"
readme="README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[example]]
name = "serde"
path = "examples/serde.rs"
[[example]]
name = "generation"
path = "examples/generation.rs"
[[example]]
name = "advanced_generation"
path = "examples/advanced_generation.rs"
[dependencies]
# Randomness
# Used to be 0.1.16
getrandom = "0.2.2"
# Data Format
hex = "0.4.2"
# Hash Functions
blake2-rfc = "0.2.18"
crypto-hash = "0.3.4"
# Serialization
serde = { version = "1.0", features = ["derive"] }