mirror of
https://github.com/signalapp/libsignal.git
synced 2026-04-25 17:25:18 +02:00
37 lines
978 B
TOML
37 lines
978 B
TOML
#
|
|
# Copyright (C) 2023 Signal Messenger, LLC.
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
#
|
|
[package]
|
|
name = "libsignal-svr3"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Signal Messenger LLC"]
|
|
license = "AGPL-3.0-only"
|
|
|
|
[dependencies]
|
|
signal-crypto = { path = "../crypto" }
|
|
|
|
aes-gcm-siv = { workspace = true }
|
|
curve25519-dalek = { workspace = true, features = ["rand_core"] }
|
|
displaydoc = { workspace = true }
|
|
hkdf = { workspace = true }
|
|
prost = { workspace = true }
|
|
rand_core = { workspace = true, features = ["getrandom"] }
|
|
sha2 = { workspace = true }
|
|
strum = { workspace = true, features = ["derive"] }
|
|
subtle = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
assert_matches = { workspace = true }
|
|
criterion = { workspace = true }
|
|
hex = { workspace = true }
|
|
hex-literal = { workspace = true }
|
|
nonzero_ext = { workspace = true }
|
|
proptest = { workspace = true }
|
|
test-case = { workspace = true }
|
|
zerocopy = { workspace = true }
|
|
|
|
[build-dependencies]
|
|
prost-build = { workspace = true }
|