0
0
mirror of https://github.com/signalapp/libsignal.git synced 2024-09-19 19:42:19 +02:00
libsignal/rust/pin/Cargo.toml

32 lines
745 B
TOML

#
# Copyright (C) 2023 Signal Messenger, LLC.
# SPDX-License-Identifier: AGPL-3.0-only
#
[package]
name = "signal-pin"
authors = ["Signal Messenger LLC"]
version = "0.1.0"
edition = "2021"
description = "A library for operating on signal pins"
license = "AGPL-3.0-only"
[dependencies]
argon2 = { version = "0.5.0", features = ["zeroize"] }
displaydoc = { workspace = true }
hkdf = { workspace = true }
rand_core = { workspace = true, features = ["getrandom"] }
sha2 = { workspace = true }
static_assertions = { workspace = true }
thiserror = { workspace = true }
[dev-dependencies]
hex-literal = { workspace = true }
hmac = { workspace = true, features = ["reset"] }
criterion = { workspace = true }
[[bench]]
name = "hash"
harness = false