Feature-gate validation and document crate features
[dnssec-prover] / src / lib.rs
index b25eb999c7ed3db51c51bd3de8a2661b052aebdf..c7027b0f1a36ad0310348a0c3720a4b3f6c04bf1 100644 (file)
 //!
 //! It is no-std (but requires `alloc`) and seeks to have minimal dependencies and a reasonably
 //! conservative MSRV policy, allowing it to be used in as many places as possible.
+//!
+//! Most of the crate's logic is feature-gated:
+//!  * By default, the `validate` feature is set, using `ring` 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.
+//!  * The `tokio` feature further enables async versions of the [`query`] methods, doing the same
+//!    querying async using `tokio`'s TCP streams.
+//!  * 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.
 
 #![deny(missing_docs)]
 
 extern crate alloc;
 
 pub mod rr;
+pub mod ser;
+
+#[cfg(feature = "validation")]
 pub mod validation;
-mod ser;
 
 #[cfg(feature = "std")]
 pub mod query;