Skip to content

Commit

Permalink
docs: add codecov badge
Browse files Browse the repository at this point in the history
  • Loading branch information
robjtede committed Jan 26, 2024
1 parent deea86e commit a4e40d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions actix-web-lab/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
[![dependency status](https://deps.rs/crate/actix-web-lab/0.20.2/status.svg)](https://deps.rs/crate/actix-web-lab/0.20.2)
[![Download](https://img.shields.io/crates/d/actix-web-lab.svg)](https://crates.io/crates/actix-web-lab)
[![CircleCI](https://circleci.com/gh/robjtede/actix-web-lab/tree/main.svg?style=shield)](https://circleci.com/gh/robjtede/actix-web-lab/tree/main)
[![codecov](https://codecov.io/gh/robjtede/actix-web-lab/branch/main/graph/badge.svg)](https://codecov.io/gh/robjtede/actix-web-lab)

<!-- prettier-ignore-end -->

Expand Down
2 changes: 1 addition & 1 deletion actix-web-lab/src/thin_data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ use tracing::log;
/// .service(web::resource("/").get(index))
/// # ;
/// ```
#[derive(AsRef, AsMut, Deref, DerefMut, Clone, Debug)]
#[derive(Debug, Clone, AsRef, AsMut, Deref, DerefMut)]
pub struct ThinData<T>(pub T);

impl<T: Clone + 'static> FromRequest for ThinData<T> {
Expand Down

0 comments on commit a4e40d1

Please sign in to comment.