Remove deprecated nightly feature external_docs

This commit is contained in:
Sarah Jamie Lewis 2021-08-16 15:46:04 -07:00
parent c719a7cbd5
commit ddd1a8dec2
3 changed files with 8 additions and 5 deletions

View File

@ -1,7 +1,7 @@
[package]
name = "fuzzytags"
description = "a probabilistic cryptographic structure for metadata resistant tagging"
version = "0.5.0"
version = "0.6.0"
repository = "https://git.openprivacy.ca/openprivacy/fuzzytags"
authors = ["Sarah Jamie Lewis <sarah@openprivacy.ca>"]
edition = "2018"

View File

@ -194,10 +194,14 @@ of different approaches e.g.:
## Benchmarks
We use [criterion](https://crates.io/crates/criterion) for benchmarking, and benchmarks can run using `cargo bench`
We use [criterion](https://crates.io/crates/criterion) for benchmarking, and benchmarks can run using `cargo bench --bench fuzzy_tags_benches`
Results will be in `target/criterion/report/index.html`.
To benchmark entangled tags run:
`cargo bench --features "entangled" --bench entangled`
### AVX2
This crate has support for the avx2 under the feature `simd`, to take advantage of this feature it is

View File

@ -1,7 +1,6 @@
#![deny(missing_docs)]
#![feature(external_doc)]
#![doc(include = "../README.md")]
#![doc(include = "../ANONYMITY.md")]
#![doc = include_str!("../README.md")]
#![doc = include_str!("../ANONYMITY.md")]
#![doc(html_logo_url = "https://git.openprivacy.ca/openprivacy/fuzzytags/media/branch/trunk/FuzzyTags_Logo.png")]
use bit_vec::BitVec;
use curve25519_dalek::constants::RISTRETTO_BASEPOINT_POINT;