Skip to content
This repository was archived by the owner on Oct 6, 2020. It is now read-only.

Commit a275f08

Browse files
committed
removed clippy lints as they would trigger warnings in rustc
1 parent 2dbda79 commit a275f08

File tree

5 files changed

+0
-9
lines changed

5 files changed

+0
-9
lines changed

src/azure/core/lease.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![allow(write_literal)]
2-
31
use azure::core::enumerations;
42
use azure::core::errors::TraversingError;
53
use azure::core::parsing::FromStringOptional;

src/azure/cosmos/mod.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![allow(write_literal)]
2-
31
mod authorization_token;
42
mod client;
53
pub mod database;

src/azure/storage/blob/blob_stream.rs

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ use futures::prelude::*;
66
use storage::blob::Blob;
77
use storage::client::Client;
88

9-
#[allow(type_complexity)]
109
pub struct BlobStream<'a> {
1110
client: &'a Client,
1211
container_name: &'a str,

src/azure/storage/blob/mod.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![allow(write_literal)]
2-
31
extern crate uuid;
42

53
use std::borrow::Borrow;

src/azure/storage/container/mod.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![allow(write_literal)]
2-
31
mod list_container_options;
42
pub use self::list_container_options::{ListContainerOptions, LIST_CONTAINER_OPTIONS_DEFAULT};
53

0 commit comments

Comments
 (0)