Skip to content

Commit

Permalink
Move crate directives
Browse files Browse the repository at this point in the history
  • Loading branch information
algesten committed Oct 3, 2024
1 parent 014b8f6 commit 9334df1
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
#![forbid(unsafe_code)]
#![warn(clippy::all)]
#![deny(missing_docs)]
//!<div align="center">
//! <!-- Version -->
//! <a href="https://crates.io/crates/ureq">
Expand Down Expand Up @@ -352,7 +349,11 @@
//! let resp = agent.get("http://cool.server").call()?;
//! # Ok(())}
//! ```
//!

#![forbid(unsafe_code)]
#![warn(clippy::all)]
#![deny(missing_docs)]

#[macro_use]
extern crate log;

Expand Down

0 comments on commit 9334df1

Please sign in to comment.