From 96fac52519d150ddfe2bd50e0731940bb88651db Mon Sep 17 00:00:00 2001 From: David Pedersen Date: Wed, 4 Aug 2021 15:01:44 +0200 Subject: [PATCH] Make docs on required deps more clear --- src/lib.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index dd7428e1..bdbfbf0a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -626,17 +626,17 @@ //! //! To use Axum there are a few dependencies you have pull in as well: //! -//! ```toml +//! ```not_rust //! [dependencies] //! axum = "" //! -//! # "full" isn't strictly necessary for tokio and hyper but its the -//! # easiest way to get started. +//! // "full" isn't strictly necessary for tokio and hyper but its the +//! // easiest way to get started. //! hyper = { version = "", features = ["full"] } //! tokio = { version = "", features = ["full"] } //! -//! # Not strictly necessary but helpful for testing. There is a -//! # testing example in the repo that shows how to test axum apps. +//! // Not strictly necessary but helpful for testing. There is a +//! // testing example in the repo that shows how to test axum apps. //! tower = "" //! ``` //!