mirror of
https://github.com/rosenpass/rosenpass.git
synced 2025-12-05 20:40:02 -08:00
32 lines
1014 B
TOML
32 lines
1014 B
TOML
[package]
|
|
name = "rosenpass-util"
|
|
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"
|
|
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
|
|
|
|
[dependencies]
|
|
base64ct = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
typenum = { workspace = true }
|
|
static_assertions = { workspace = true }
|
|
rustix = { workspace = true }
|
|
zeroize = { workspace = true }
|
|
zerocopy = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
mio = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
uds = { workspace = true, optional = true, features = ["mio_1xx"] }
|
|
libcrux-test-utils = { workspace = true, optional = true }
|
|
|
|
[features]
|
|
experiment_file_descriptor_passing = ["uds"]
|
|
trace_bench = ["dep:libcrux-test-utils"]
|