mirror of
https://github.com/rosenpass/rosenpass.git
synced 2025-12-05 20:40:02 -08:00
Before this change, the patch release was left open. This patch pinpoints it exactly, down to the patch release. Signed-off-by: wucke13 <wucke13+github@gmail.com>
27 lines
754 B
TOML
27 lines
754 B
TOML
[package]
|
|
name = "rosenpass-constant-time"
|
|
version = "0.1.0"
|
|
authors = ["Karolin Varner <karo@cupdev.net>", "wucke13 <wucke13@gmail.com>"]
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
description = "Rosenpass internal utilities for constant time crypto implementations"
|
|
homepage = "https://rosenpass.eu/"
|
|
repository = "https://github.com/rosenpass/rosenpass"
|
|
readme = "readme.md"
|
|
rust-version = "1.77.0"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[features]
|
|
constant_time_tests = []
|
|
|
|
[dependencies]
|
|
rosenpass-to = { workspace = true }
|
|
memsec = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
rand = { workspace = true }
|
|
|
|
[lints.rust]
|
|
unexpected_cfgs = { level = "allow", check-cfg = ['cfg(coverage)'] }
|