From 62ffed0624f79a82dd828a2bf5ba047dbf561650 Mon Sep 17 00:00:00 2001 From: Mustafa Zaki Assagaf Date: Wed, 18 Dec 2024 15:13:03 +0700 Subject: [PATCH] docs: added website link to creates documentation (#230) --- crates/tuono/src/lib.rs | 5 +++++ crates/tuono_lib/src/lib.rs | 5 +++++ crates/tuono_lib_macros/src/lib.rs | 5 +++++ 3 files changed, 15 insertions(+) diff --git a/crates/tuono/src/lib.rs b/crates/tuono/src/lib.rs index 75f1bad6..3d56a996 100644 --- a/crates/tuono/src/lib.rs +++ b/crates/tuono/src/lib.rs @@ -1,3 +1,8 @@ +//! ## Tuono +//! Tuono is a full-stack web framework for building React applications using Rust as the backend with a strong focus on usability and performance. +//! +//! You can find the full documentation at [tuono.dev](https://tuono.dev/) + mod app; pub mod cli; mod mode; diff --git a/crates/tuono_lib/src/lib.rs b/crates/tuono_lib/src/lib.rs index d94172c6..2be702c4 100644 --- a/crates/tuono_lib/src/lib.rs +++ b/crates/tuono_lib/src/lib.rs @@ -1,3 +1,8 @@ +//! ## Tuono +//! Tuono is a full-stack web framework for building React applications using Rust as the backend with a strong focus on usability and performance. +//! +//! You can find the full documentation at [tuono.dev](https://tuono.dev/) + mod catch_all; mod logger; mod manifest; diff --git a/crates/tuono_lib_macros/src/lib.rs b/crates/tuono_lib_macros/src/lib.rs index 5d102486..c40e5f84 100644 --- a/crates/tuono_lib_macros/src/lib.rs +++ b/crates/tuono_lib_macros/src/lib.rs @@ -1,3 +1,8 @@ +//! ## Tuono +//! Tuono is a full-stack web framework for building React applications using Rust as the backend with a strong focus on usability and performance. +//! +//! You can find the full documentation at [tuono.dev](https://tuono.dev/) + extern crate proc_macro; use proc_macro::TokenStream;