From 1509d4ad1226e2bb05dc3fc70d802bdb3820fa71 Mon Sep 17 00:00:00 2001 From: David Pedersen Date: Thu, 5 Aug 2021 11:51:33 +0200 Subject: [PATCH] Add note about safety to readme --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 11266509..2cf34429 100644 --- a/README.md +++ b/README.md @@ -95,6 +95,11 @@ See the [crate documentation][docs] for way more examples. overhead. So `axum`'s performance is comparable to [`hyper`]. You can find a benchmark [here](https://github.com/programatik29/rust-web-benchmarks). +## Safety + +This crate uses `#![forbid(unsafe_code)]` to ensure everything is implemented in +100% safe Rust. + ## Examples The [examples] folder contains various examples of how to use `axum`. The