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

Commit 2dbda79

Browse files
committed
Silenced clippy lints that cannot be helped
1 parent 3140948 commit 2dbda79

File tree

5 files changed

+9
-0
lines changed

5 files changed

+9
-0
lines changed

src/azure/core/lease.rs

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

src/azure/cosmos/mod.rs

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

src/azure/storage/blob/blob_stream.rs

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

9+
#[allow(type_complexity)]
910
pub struct BlobStream<'a> {
1011
client: &'a Client,
1112
container_name: &'a str,

src/azure/storage/blob/mod.rs

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

35
use std::borrow::Borrow;

src/azure/storage/container/mod.rs

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

0 commit comments

Comments
 (0)