0
0
mirror of https://github.com/signalapp/libsignal.git synced 2024-09-20 12:02:18 +02:00
libsignal/rust/zkcredential/Cargo.toml
Jordan Rose b7f11ac0f1
Introduce zkcredential crate
zkcredential provides APIs for a generic form of the sort of credentials zkgroup supports
2023-04-17 11:10:02 -07:00

27 lines
624 B
TOML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#
# Copyright 2023 Signal Messenger, LLC.
# SPDX-License-Identifier: AGPL-3.0-only
#
[package]
name = "zkcredential"
version = "0.1.0"
authors = ["Signal Messenger LLC"]
edition = "2021"
license = "AGPL-3.0-only"
[dependencies]
poksho = { path = "../poksho" }
curve25519-dalek = { version = "3.0", features = ["serde"] }
displaydoc = "0.2"
lazy_static = "1.4.0"
serde = { version = "1.0.106", features = ["derive"] }
[dev-dependencies]
bincode = "1.2.1"
hex = "0.4"
# Many of zkcredential's tests live in the zkgroup crate,
# since zkcredential was designed to work with existing verifiably encrypted attribute types.