Unverified Commit 22531465 authored by Nugine's avatar Nugine
Browse files

lint: clippy::cargo

parent 6f54227e
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -6,6 +6,8 @@ description = "S3 service adapter integrated with aws-sdk-s3"
license = "Apache-2.0"
readme = "../../README.md"
repository = "https://github.com/Nugine/s3s"
keywords = ["s3"]
categories = ["web-programming", "web-programming::http-server"]

[dependencies]
aws-smithy-http = "0.53.1"
+1 −0
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@
#![deny(
    clippy::all, //
    clippy::must_use_candidate, //
    clippy::cargo, //
)]

use s3s::service::SharedS3Service;
+2 −0
Original line number Diff line number Diff line
@@ -6,6 +6,8 @@ description = "An experimental S3 server based on file system"
license = "Apache-2.0"
readme = "../../README.md"
repository = "https://github.com/Nugine/s3s"
keywords = ["s3"]
categories = ["web-programming", "web-programming::http-server"]

[[bin]]
name = "s3s-fs"
+1 −0
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@
#![deny(
    clippy::all, //
    clippy::must_use_candidate, //
    clippy::cargo, //
)]

#[macro_use]
+6 −0
Original line number Diff line number Diff line
#![forbid(unsafe_code)]
#![deny(
    clippy::all, //
    clippy::must_use_candidate, //
)]

use s3s::service::S3Service;

use std::fs;
Loading