Files
libsignal/rust/protocol/fuzz/Cargo.toml
Alex Bakon fb33f261bf Upgrade crates to Rust 2024 edition
Co-authored-by: Andrew <andrew@signal.org>
2025-09-03 15:12:59 -04:00

40 lines
773 B
TOML

[package]
name = "libsignal-protocol-fuzz"
version = "0.0.0"
authors = ["Automatically generated"]
publish = false
edition = "2024"
[package.metadata]
cargo-fuzz = true
[dependencies]
libsignal-protocol = { path = ".." }
env_logger = "0.11.4"
futures-util = "0.3.7"
libfuzzer-sys = "0.4"
log = "0.4"
rand = "0.9"
# Prevent this from interfering with workspaces
[workspace]
members = ["."]
[[bin]]
name = "interaction"
path = "fuzz_targets/interaction.rs"
test = false
doc = false
[[bin]]
name = "sealed_sender_v2"
path = "fuzz_targets/sealed_sender_v2.rs"
test = false
doc = false
[patch.crates-io]
# Use our fork of curve25519-dalek for zkgroup support.
curve25519-dalek = { git = 'https://github.com/signalapp/curve25519-dalek', tag = 'signal-curve25519-4.0.0' }