From ec31a33e4835b2323dd8ae5b87197440a33df6c1 Mon Sep 17 00:00:00 2001 From: Lachezar Lechev Date: Fri, 11 Oct 2024 20:02:54 +0300 Subject: [PATCH] chore: add command for building docs and fix doc comments link Signed-off-by: Lachezar Lechev --- .cargo/config.toml | 3 +++ benches-harness/src/lib.rs | 5 +++-- 2 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 .cargo/config.toml diff --git a/.cargo/config.toml b/.cargo/config.toml new file mode 100644 index 0000000..e0a62aa --- /dev/null +++ b/.cargo/config.toml @@ -0,0 +1,3 @@ +[alias] + +build-docs = "doc --no-deps --workspace --document-private-items --all-features" \ No newline at end of file diff --git a/benches-harness/src/lib.rs b/benches-harness/src/lib.rs index 804cbe8..e3e9a1b 100644 --- a/benches-harness/src/lib.rs +++ b/benches-harness/src/lib.rs @@ -1,2 +1,3 @@ -//! Dummy crate for testing with [`criterion`]` without bumping MSRV of `nmea` -//! every time there's an MSRV change in dependency crate like [`criterion`]. +//! Dummy crate for testing with [`criterion`](https://crates.io/crates/criterion) without bumping MSRV of `nmea` +//! every time there's an MSRV change in dependency crate like [`criterion`](https://crates.io/crates/criterion). +//!