fuzzytags/Cargo.toml

38 lines
1.0 KiB
TOML
Raw Normal View History

2021-01-29 21:52:34 +00:00
[package]
2021-01-30 19:33:30 +00:00
name = "fuzzytags"
description = "a probabilistic cryptographic structure for metadata resistant tagging"
version = "0.4.2"
repository = "https://git.openprivacy.ca/openprivacy/fuzzytags"
2021-01-29 21:52:34 +00:00
authors = ["Sarah Jamie Lewis <sarah@openprivacy.ca>"]
edition = "2018"
2021-01-30 19:44:52 +00:00
license = "MIT"
2021-02-03 04:51:16 +00:00
keywords = ["fuzzytags","privacy","metadata-resistance","ristretto","cryptography"]
2021-01-29 21:52:34 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
hex = "0.4.2"
rand = "0.7.3"
curve25519-dalek = {version="3.0.0", features=["serde"]}
sha3 = "0.9.1"
2021-01-30 10:15:08 +00:00
serde = {version="1.0.123", features=["derive"]}
bit-vec = {version="0.6.3"}
brute-force = {version="0.1.0", features=["curve25519"], optional=true}
rayon = {version="1.5.0", optional=true}
2021-01-30 07:09:02 +00:00
2021-01-30 08:23:46 +00:00
[dev-dependencies]
criterion = {version="0.3", features=["html_reports"]}
2021-01-30 10:15:08 +00:00
serde_json = "1.0.61"
bincode = "1.3.1"
2021-01-30 08:23:46 +00:00
[[bench]]
name = "fuzzy_tags_benches"
harness = false
[[bench]]
name = "entangled"
harness = false
2021-02-03 00:19:20 +00:00
[features]
entangled = ["brute-force"]
bulk_verify = ["rayon"]