-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (33 loc) · 1.02 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
[package]
name = "timed_release_crypto"
version = "0.0.1"
authors = ["CryptoPatrick <cryptopatrick@gmail.com>"]
description = """
Abstractions and implementations for sending encrypted messages into the future.
"""
documentation = "https://github.com/cryptopatrick/timed_release_crypto"
homepage = "https://github.com/cryptopatrick/timed_release_crypto"
repository = "https://github.com/cryptopatrick/timed_release_crypto"
# keywords are terms that a user might search for (on crates.io).
keywords = ["cryptography", "crypto", "messaging"]
# categories are related to crates.io
categories = ["cryptography"]
license = "Unlicense OR MIT"
exclude = ["/.github/", "/ci/", "/scripts/"]
# build = "build.rs"
edition = "2021"
rust-version = "1.80"
[lib]
name = "timed_release_crypto"
path = "src/lib.rs"
[dependencies]
num-bigint = { version = "0.4.6", features = ["rand"] }
num-traits = "0.2.19"
rand = "0.8.5"
aes-gcm = "0.10"
base64 = "0.21"
[dev-dependencies]
criterion = "0.5.1"
#[[bench]]
#name = "generate_large_random_prime"
#harness = false