0
0
mirror of https://github.com/signalapp/libsignal.git synced 2024-09-20 03:52:17 +02:00
libsignal/rust/attest/Cargo.toml
2024-07-10 09:30:51 -04:00

52 lines
1.3 KiB
TOML

#
# Copyright (C) 2022 Signal Messenger, LLC.
# SPDX-License-Identifier: AGPL-3.0-only
#
[package]
name = "attest"
version = "0.1.0"
authors = ["Signal Messenger LLC"]
edition = "2021"
license = "AGPL-3.0-only"
[dependencies]
boring = { git = "https://github.com/signalapp/boring", tag = "signal-v4.6.0", default-features = false }
asn1 = "0.16.1"
base64 = "0.21"
bitflags = "2.3.3"
chacha20poly1305 = "0.10.1"
chrono = { version = "0.4", features = ["serde"] }
ciborium = "0.2"
displaydoc = "0.2"
hex = { version = "0.4", features = ["serde"] }
hex-literal = "0.4.1"
lazy_static = "1.4.0"
libc = "0.2"
log = "0.4"
prost = "0.12"
rand_core = { version = "0.6", features = ["getrandom"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["raw_value"] }
sha2 = "0.10"
snow = { version = "0.9.5", default-features = false }
static_assertions = "1.1"
strum = { version = "0.26", features = ["derive"] }
subtle = "2.5"
thiserror = "1.0.57"
uuid = "1.1.2"
x25519-dalek = "2.0.0"
zerocopy = { version = "0.7.34", features = ["derive"] }
[dev-dependencies]
assert_matches = "1.5"
snow = { version = "0.9.5", features = ["default-resolver"] }
test-case = "3.3"
[build-dependencies]
prost-build = "0.12"
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(fuzzing)'] }