Documentation: Stop hard-coding briansmith.org paths.

Let people find the docs on docs.rs.
This commit is contained in:
Brian Smith 2023-08-30 16:17:39 -07:00
parent c81f92e4e8
commit ad1fe9288e
2 changed files with 0 additions and 2 deletions

View File

@ -16,7 +16,6 @@
authors = ["Brian Smith <brian@briansmith.org>"]
categories = ["cryptography", "no-std"]
description = "Web PKI X.509 Certificate Verification."
documentation = "https://briansmith.org/rustdoc/webpki/"
edition = "2018"
license-file = "LICENSE"
name = "webpki"

View File

@ -24,7 +24,6 @@
//! | `alloc` | Enable features that require use of the heap. Currently all RSA signature algorithms require this feature. |
//! | `std` | Enable features that require libstd. Implies `alloc`. |
#![doc(html_root_url = "https://briansmith.org/rustdoc/")]
#![cfg_attr(not(feature = "std"), no_std)]
#![allow(
clippy::doc_markdown,