]> git.bitcoin.ninja Git - dnssec-prover/commitdiff
Fix outdated docs
authorElias Rohrer <dev@tnull.de>
Mon, 22 Jul 2024 14:16:41 +0000 (16:16 +0200)
committerElias Rohrer <dev@tnull.de>
Mon, 22 Jul 2024 14:16:41 +0000 (16:16 +0200)
src/lib.rs

index 27421ed828174a74f6c9fe8aa21c19077910bb40..5a8f33c8232d9f2ed00d98eeca2907ef0c3ce0da 100644 (file)
@@ -15,7 +15,7 @@
 //! conservative MSRV policy, allowing it to be used in as many places as possible.
 //!
 //! Most of the crate's logic is feature-gated, and *all dependencies are optional*:
-//!  * By default, the `validate` feature is set, using `ring` to validate DNSSEC signatures and
+//!  * By default, the `validation` feature is set, allowing to validate DNSSEC signatures and
 //!    proofs using the [`validation`] module.
 //!  * The `std` feature enables the [`query`] module, allowing for the building of proofs by
 //!    querying a recursive resolver over TCP.
 //!  * Finally, the crate can be built as a binary using the `build_server` feature, responding to
 //!    queries over HTTP GET calls to `/dnssecproof?d=domain.name.&t=RecordType` with DNSSEC
 //!    proofs.
-//!
-//! Note that this library's MSRV is 1.64 for normal building, however builds fine on 1.63 (and
-//! possibly earlier) when `RUSTC_BOOTSTRAP=1` is set, as it relies on the
-//! `const_slice_from_raw_parts` feature.
 
 #![deny(missing_docs)]
 #![deny(rustdoc::broken_intra_doc_links)]