Add Zebra logo to all workspace crates.
Also add html_root_url attributes.
This commit is contained in:
parent
af455f9896
commit
ff3efd504c
|
@ -1,4 +1,8 @@
|
||||||
//! Blockchain-related datastructures for Zebra. 🦓
|
//! Blockchain-related datastructures for Zebra. 🦓
|
||||||
|
|
||||||
|
#![doc(html_logo_url = "https://www.zfnd.org/images/zebra-icon.png")]
|
||||||
|
#![doc(html_root_url = "https://doc.zebra.zfnd.org/zebra_chain")]
|
||||||
|
|
||||||
#![deny(missing_docs)]
|
#![deny(missing_docs)]
|
||||||
|
|
||||||
mod merkle_tree;
|
mod merkle_tree;
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
#![doc(html_logo_url = "https://www.zfnd.org/images/zebra-icon.png")]
|
||||||
|
#![doc(html_root_url = "https://doc.zebra.zfnd.org/zebra_client")]
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
#[test]
|
#[test]
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
#![doc(html_logo_url = "https://www.zfnd.org/images/zebra-icon.png")]
|
||||||
|
#![doc(html_root_url = "https://doc.zebra.zfnd.org/zebra_consensus")]
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
#[test]
|
#[test]
|
||||||
|
|
|
@ -26,6 +26,9 @@
|
||||||
//! to close, and the outbound service can connect to additional peers
|
//! to close, and the outbound service can connect to additional peers
|
||||||
//! when it is overloaded.
|
//! when it is overloaded.
|
||||||
|
|
||||||
|
#![doc(html_logo_url = "https://www.zfnd.org/images/zebra-icon.png")]
|
||||||
|
#![doc(html_root_url = "https://doc.zebra.zfnd.org/zebra_network")]
|
||||||
|
|
||||||
#![deny(missing_docs)]
|
#![deny(missing_docs)]
|
||||||
// Tracing causes false positives on this lint:
|
// Tracing causes false positives on this lint:
|
||||||
// https://github.com/tokio-rs/tracing/issues/553
|
// https://github.com/tokio-rs/tracing/issues/553
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
#![doc(html_logo_url = "https://www.zfnd.org/images/zebra-icon.png")]
|
||||||
|
#![doc(html_root_url = "https://doc.zebra.zfnd.org/zebra_rpc")]
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
#[test]
|
#[test]
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
#![doc(html_logo_url = "https://www.zfnd.org/images/zebra-icon.png")]
|
||||||
|
#![doc(html_root_url = "https://doc.zebra.zfnd.org/zebra_script")]
|
||||||
|
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
#[test]
|
#[test]
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
#![doc(html_logo_url = "https://www.zfnd.org/images/zebra-icon.png")]
|
||||||
|
#![doc(html_root_url = "https://doc.zebra.zfnd.org/zebra_storage")]
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
#[test]
|
#[test]
|
||||||
|
|
|
@ -12,6 +12,9 @@
|
||||||
//!
|
//!
|
||||||
//! [Join us on Discord](https://discord.gg/na6QZNd).
|
//! [Join us on Discord](https://discord.gg/na6QZNd).
|
||||||
|
|
||||||
|
#![doc(html_logo_url = "https://www.zfnd.org/images/zebra-icon.png")]
|
||||||
|
#![doc(html_root_url = "https://doc.zebra.zfnd.org/zebrad")]
|
||||||
|
|
||||||
//#![deny(warnings, missing_docs, trivial_casts, unused_qualifications)]
|
//#![deny(warnings, missing_docs, trivial_casts, unused_qualifications)]
|
||||||
#![forbid(unsafe_code)]
|
#![forbid(unsafe_code)]
|
||||||
// Tracing causes false positives on this lint:
|
// Tracing causes false positives on this lint:
|
||||||
|
|
Loading…
Reference in New Issue