Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev/rustdoc #1453

Merged
merged 11 commits into from
Sep 19, 2024
2 changes: 1 addition & 1 deletion commons/zenoh-buffers/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
//!
//! This crate is intended for Zenoh's internal use.
//!
//! [Click here for Zenoh's documentation](../zenoh/index.html)
//! [Click here for Zenoh's documentation](https://docs.rs/zenoh/latest/zenoh)
//!
//! Provide different buffer implementations used for serialization and deserialization.
#![cfg_attr(not(feature = "std"), no_std)]
Expand Down
2 changes: 1 addition & 1 deletion commons/zenoh-codec/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
//!
//! This crate is intended for Zenoh's internal use.
//!
//! [Click here for Zenoh's documentation](../zenoh/index.html)
//! [Click here for Zenoh's documentation](https://docs.rs/zenoh/latest/zenoh)
#![cfg_attr(not(feature = "std"), no_std)]
extern crate alloc;

Expand Down
2 changes: 1 addition & 1 deletion commons/zenoh-collections/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
//!
//! This crate is intended for Zenoh's internal use.
//!
//! [Click here for Zenoh's documentation](../zenoh/index.html)
//! [Click here for Zenoh's documentation](https://docs.rs/zenoh/latest/zenoh)
#![cfg_attr(not(feature = "std"), no_std)]
extern crate alloc;

Expand Down
6 changes: 6 additions & 0 deletions commons/zenoh-config/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@
// ZettaScale Zenoh Team, <[email protected]>
//

//! ⚠️ WARNING ⚠️
//!
//! This crate is intended for Zenoh's internal use.
//!
//! [Click here for Zenoh's documentation](https://docs.rs/zenoh/latest/zenoh)
//!
//! Configuration to pass to `zenoh::open()` and `zenoh::scout()` functions and associated constants.
pub mod defaults;
mod include;
Expand Down
2 changes: 1 addition & 1 deletion commons/zenoh-core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
//!
//! This crate is intended for Zenoh's internal use.
//!
//! [Click here for Zenoh's documentation](../zenoh/index.html)
//! [Click here for Zenoh's documentation](https://docs.rs/zenoh/latest/zenoh)
pub use lazy_static::lazy_static;
pub mod macros;

Expand Down
2 changes: 1 addition & 1 deletion commons/zenoh-crypto/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
//!
//! This crate is intended for Zenoh's internal use.
//!
//! [Click here for Zenoh's documentation](../zenoh/index.html)
//! [Click here for Zenoh's documentation](https://docs.rs/zenoh/latest/zenoh)
mod cipher;
pub mod hmac;
mod prng;
Expand Down
6 changes: 6 additions & 0 deletions commons/zenoh-keyexpr/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@
// ZettaScale Zenoh Team, <[email protected]>
//

//! ⚠️ WARNING ⚠️
//!
//! This crate is intended for Zenoh's internal use.
//!
//! [Click here for Zenoh's documentation](https://docs.rs/zenoh/latest/zenoh)
//!
//! [Key expression](https://github.com/eclipse-zenoh/roadmap/blob/main/rfcs/ALL/Key%20Expressions.md) are Zenoh's address space.
//!
//! In Zenoh, operations are performed on keys. To allow addressing multiple keys with a single operation, we use Key Expressions (KE).
Expand Down
20 changes: 15 additions & 5 deletions commons/zenoh-macros/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
//!
//! This crate is intended for Zenoh's internal use.
//!
//! [Click here for Zenoh's documentation](../zenoh/index.html)
//! [Click here for Zenoh's documentation](https://docs.rs/zenoh/latest/zenoh)
use proc_macro::TokenStream;
use quote::{quote, ToTokens};
use syn::{parse_macro_input, parse_quote, Attribute, Error, Item, ItemImpl, LitStr, TraitItem};
Expand Down Expand Up @@ -152,10 +152,20 @@ pub fn unstable_doc(_attr: TokenStream, tokens: TokenStream) -> TokenStream {
};

if attrs.iter().any(is_doc_attribute) {
// See: https://doc.rust-lang.org/rustdoc/how-to-write-documentation.html#adding-a-warning-block
let message = "<div class=\"warning\">This API has been marked as <strong>unstable</strong>: it works as advertised, but it may be changed in a future release.</div>";
let note: Attribute = parse_quote!(#[doc = #message]);
attrs.push(note);
let mut pushed = false;
let oldattrs = std::mem::take(attrs);
for attr in oldattrs {
if is_doc_attribute(&attr) && !pushed {
attrs.push(attr);
// See: https://doc.rust-lang.org/rustdoc/how-to-write-documentation.html#adding-a-warning-block
let message = "<div class=\"warning\">This API has been marked as <strong>unstable</strong>: it works as advertised, but it may be changed in a future release.</div>";
let note: Attribute = parse_quote!(#[doc = #message]);
attrs.push(note);
pushed = true;
} else {
attrs.push(attr);
}
}
}

TokenStream::from(item.to_token_stream())
Expand Down
2 changes: 1 addition & 1 deletion commons/zenoh-macros/src/zenoh_runtime_derive.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
//!
//! This crate is intended for Zenoh's internal use.
//!
//! [Click here for Zenoh's documentation](../zenoh/index.html)
//! [Click here for Zenoh's documentation](https://docs.rs/zenoh/latest/zenoh)
use proc_macro2::TokenStream;
use quote::{format_ident, quote, ToTokens};
use syn::{
Expand Down
2 changes: 1 addition & 1 deletion commons/zenoh-protocol/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
//!
//! This crate is intended for Zenoh's internal use.
//!
//! [Click here for Zenoh's documentation](../zenoh/index.html)
//! [Click here for Zenoh's documentation](https://docs.rs/zenoh/latest/zenoh)
#![cfg_attr(not(feature = "std"), no_std)]
extern crate alloc;

Expand Down
2 changes: 1 addition & 1 deletion commons/zenoh-result/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
//!
//! This crate is intended for Zenoh's internal use.
//!
//! [Click here for Zenoh's documentation](../zenoh/index.html)
//! [Click here for Zenoh's documentation](https://docs.rs/zenoh/latest/zenoh)
#![cfg_attr(not(feature = "std"), no_std)]
extern crate alloc;

Expand Down
8 changes: 8 additions & 0 deletions commons/zenoh-runtime/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# ⚠️ WARNING ⚠️

This crate is intended for Zenoh's internal use.

- [Click here for Zenoh's main repository](https://github.com/eclipse-zenoh/zenoh)
- [Click here for Zenoh's documentation](https://zenoh.io)


6 changes: 6 additions & 0 deletions commons/zenoh-runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@
// Contributors:
// ZettaScale Zenoh Team, <[email protected]>
//

//! ⚠️ WARNING ⚠️
//!
//! This crate is intended for Zenoh's internal use.
//!
//! [Click here for Zenoh's documentation](https://docs.rs/zenoh/latest/zenoh)
use core::panic;
use std::{
borrow::Borrow,
Expand Down
6 changes: 6 additions & 0 deletions commons/zenoh-shm/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@
// Contributors:
// ZettaScale Zenoh Team, <[email protected]>
//

//! ⚠️ WARNING ⚠️
//!
//! This crate is intended for Zenoh's internal use.
//!
//! [Click here for Zenoh's documentation](https://docs.rs/zenoh/latest/zenoh)
use std::{
any::Any,
num::NonZeroUsize,
Expand Down
2 changes: 1 addition & 1 deletion commons/zenoh-sync/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
//!
//! This module is intended for Zenoh's internal use.
//!
//! [Click here for Zenoh's documentation](../zenoh/index.html)
//! [Click here for Zenoh's documentation](https://docs.rs/zenoh/latest/zenoh)
use std::{
future::Future,
pin::Pin,
Expand Down
8 changes: 8 additions & 0 deletions commons/zenoh-task/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# ⚠️ WARNING ⚠️

This crate is intended for Zenoh's internal use.

- [Click here for Zenoh's main repository](https://github.com/eclipse-zenoh/zenoh)
- [Click here for Zenoh's documentation](https://zenoh.io)


2 changes: 1 addition & 1 deletion commons/zenoh-task/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
//!
//! This module is intended for Zenoh's internal use.
//!
//! [Click here for Zenoh's documentation](../zenoh/index.html)
//! [Click here for Zenoh's documentation](https://docs.rs/zenoh/latest/zenoh)

use std::{future::Future, time::Duration};

Expand Down
2 changes: 1 addition & 1 deletion commons/zenoh-util/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
//!
//! This crate is intended for Zenoh's internal use.
//!
//! [Click here for Zenoh's documentation](../zenoh/index.html)
//! [Click here for Zenoh's documentation](https://docs.rs/zenoh/latest/zenoh)
use lazy_static::lazy_static;

pub mod ffi;
Expand Down
12 changes: 8 additions & 4 deletions commons/zenoh-util/src/log.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,10 @@ use tracing_subscriber::{
EnvFilter,
};

/// This is a utility function to enable the tracing formatting subscriber from
/// the `RUST_LOG` environment variable. If `RUST_LOG` is not set, then logging is not enabled.
/// A utility function to enable the tracing formatting subscriber.
///
/// The tracing formatting subscriber is initialized from the `RUST_LOG` environment variable.
/// If `RUST_LOG` is not set, then logging is not enabled.
///
/// # Safety
/// Calling this function initializes a `lazy_static` in the `tracing` crate
Expand All @@ -34,8 +36,10 @@ pub fn try_init_log_from_env() {
}
}

/// This is a utility function to enable the tracing formatting subscriber from
/// the environment variable. If `RUST_LOG` is not set, then fallback directives are used.
/// A utility function to enable the tracing formatting subscriber.
///
/// The tracing formatting subscriber is initialized from the `RUST_LOG` environment variable.
/// If `RUST_LOG` is not set, then fallback directives are used.
///
/// # Safety
/// Calling this function initializes a `lazy_static` in the `tracing` crate
Expand Down
2 changes: 1 addition & 1 deletion io/zenoh-link-commons/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
//!
//! This crate is intended for Zenoh's internal use.
//!
//! [Click here for Zenoh's documentation](../zenoh/index.html)
//! [Click here for Zenoh's documentation](https://docs.rs/zenoh/latest/zenoh)
extern crate alloc;

mod listener;
Expand Down
2 changes: 1 addition & 1 deletion io/zenoh-link/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
//!
//! This crate is intended for Zenoh's internal use.
//!
//! [Click here for Zenoh's documentation](../zenoh/index.html)
//! [Click here for Zenoh's documentation](https://docs.rs/zenoh/latest/zenoh)
use std::collections::HashMap;

use zenoh_config::Config;
Expand Down
8 changes: 8 additions & 0 deletions io/zenoh-links/zenoh-link-quic/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# ⚠️ WARNING ⚠️

This crate is intended for Zenoh's internal use.

- [Click here for Zenoh's main repository](https://github.com/eclipse-zenoh/zenoh)
- [Click here for Zenoh's documentation](https://zenoh.io)


2 changes: 1 addition & 1 deletion io/zenoh-links/zenoh-link-quic/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
//!
//! This crate is intended for Zenoh's internal use.
//!
//! [Click here for Zenoh's documentation](../zenoh/index.html)
//! [Click here for Zenoh's documentation](https://docs.rs/zenoh/latest/zenoh)
use async_trait::async_trait;
use zenoh_core::zconfigurable;
use zenoh_link_commons::LocatorInspector;
Expand Down
8 changes: 8 additions & 0 deletions io/zenoh-links/zenoh-link-serial/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# ⚠️ WARNING ⚠️

This crate is intended for Zenoh's internal use.

- [Click here for Zenoh's main repository](https://github.com/eclipse-zenoh/zenoh)
- [Click here for Zenoh's documentation](https://zenoh.io)


2 changes: 1 addition & 1 deletion io/zenoh-links/zenoh-link-serial/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
//!
//! This crate is intended for Zenoh's internal use.
//!
//! [Click here for Zenoh's documentation](../zenoh/index.html)
//! [Click here for Zenoh's documentation](https://docs.rs/zenoh/latest/zenoh)
mod unicast;

use std::str::FromStr;
Expand Down
8 changes: 8 additions & 0 deletions io/zenoh-links/zenoh-link-tcp/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# ⚠️ WARNING ⚠️

This crate is intended for Zenoh's internal use.

- [Click here for Zenoh's main repository](https://github.com/eclipse-zenoh/zenoh)
- [Click here for Zenoh's documentation](https://zenoh.io)


2 changes: 1 addition & 1 deletion io/zenoh-links/zenoh-link-tcp/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
//!
//! This crate is intended for Zenoh's internal use.
//!
//! [Click here for Zenoh's documentation](../zenoh/index.html)
//! [Click here for Zenoh's documentation](https://docs.rs/zenoh/latest/zenoh)
use std::net::SocketAddr;

use async_trait::async_trait;
Expand Down
8 changes: 8 additions & 0 deletions io/zenoh-links/zenoh-link-tls/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# ⚠️ WARNING ⚠️

This crate is intended for Zenoh's internal use.

- [Click here for Zenoh's main repository](https://github.com/eclipse-zenoh/zenoh)
- [Click here for Zenoh's documentation](https://zenoh.io)


2 changes: 1 addition & 1 deletion io/zenoh-links/zenoh-link-tls/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
//!
//! This crate is intended for Zenoh's internal use.
//!
//! [Click here for Zenoh's documentation](../zenoh/index.html)
//! [Click here for Zenoh's documentation](https://docs.rs/zenoh/latest/zenoh)
use async_trait::async_trait;
use zenoh_core::zconfigurable;
use zenoh_link_commons::LocatorInspector;
Expand Down
8 changes: 8 additions & 0 deletions io/zenoh-links/zenoh-link-udp/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# ⚠️ WARNING ⚠️

This crate is intended for Zenoh's internal use.

- [Click here for Zenoh's main repository](https://github.com/eclipse-zenoh/zenoh)
- [Click here for Zenoh's documentation](https://zenoh.io)


2 changes: 1 addition & 1 deletion io/zenoh-links/zenoh-link-udp/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
//!
//! This crate is intended for Zenoh's internal use.
//!
//! [Click here for Zenoh's documentation](../zenoh/index.html)
//! [Click here for Zenoh's documentation](https://docs.rs/zenoh/latest/zenoh)
mod multicast;
mod unicast;

Expand Down
8 changes: 8 additions & 0 deletions io/zenoh-links/zenoh-link-unixpipe/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# ⚠️ WARNING ⚠️

This crate is intended for Zenoh's internal use.

- [Click here for Zenoh's main repository](https://github.com/eclipse-zenoh/zenoh)
- [Click here for Zenoh's documentation](https://zenoh.io)


2 changes: 1 addition & 1 deletion io/zenoh-links/zenoh-link-unixpipe/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
//!
//! This crate is intended for Zenoh's internal use.
//!
//! [Click here for Zenoh's documentation](../zenoh/index.html)
//! [Click here for Zenoh's documentation](https://docs.rs/zenoh/latest/zenoh)

#[cfg(unix)]
mod unix;
Expand Down
2 changes: 1 addition & 1 deletion io/zenoh-links/zenoh-link-unixpipe/src/unix/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
//!
//! This crate is intended for Zenoh's internal use.
//!
//! [Click here for Zenoh's documentation](../zenoh/index.html)
//! [Click here for Zenoh's documentation](https://docs.rs/zenoh/latest/zenoh)
pub mod unicast;

use async_trait::async_trait;
Expand Down
8 changes: 8 additions & 0 deletions io/zenoh-links/zenoh-link-unixsock_stream/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# ⚠️ WARNING ⚠️

This crate is intended for Zenoh's internal use.

- [Click here for Zenoh's main repository](https://github.com/eclipse-zenoh/zenoh)
- [Click here for Zenoh's documentation](https://zenoh.io)


2 changes: 1 addition & 1 deletion io/zenoh-links/zenoh-link-unixsock_stream/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
//!
//! This crate is intended for Zenoh's internal use.
//!
//! [Click here for Zenoh's documentation](../zenoh/index.html)
//! [Click here for Zenoh's documentation](https://docs.rs/zenoh/latest/zenoh)
use async_trait::async_trait;
use zenoh_core::zconfigurable;
use zenoh_link_commons::LocatorInspector;
Expand Down
8 changes: 8 additions & 0 deletions io/zenoh-links/zenoh-link-vsock/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# ⚠️ WARNING ⚠️

This crate is intended for Zenoh's internal use.

- [Click here for Zenoh's main repository](https://github.com/eclipse-zenoh/zenoh)
- [Click here for Zenoh's documentation](https://zenoh.io)


2 changes: 1 addition & 1 deletion io/zenoh-links/zenoh-link-vsock/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
//!
//! This crate is intended for Zenoh's internal use.
//!
//! [Click here for Zenoh's documentation](../zenoh/index.html)
//! [Click here for Zenoh's documentation](https://docs.rs/zenoh/latest/zenoh)
//!
//! Implements [vsock](https://man7.org/linux/man-pages/man7/vsock.7.html) link support.
use async_trait::async_trait;
Expand Down
Loading