-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
bugSomething isn't workingSomething isn't workinghighFeature has high priorityFeature has high priorityneeds assignmentIssue that needs a Sprint or may be implemented in a future release.Issue that needs a Sprint or may be implemented in a future release.requires testThis feature or implementation requires a test to be added to lib.rs test structure.This feature or implementation requires a test to be added to lib.rs test structure.
Description
I tried building the project in stable rust and nightly rust. Each time I receive the following error.
Compiling rusoto_credential v0.11.0
warning[E0122]: trait bounds are not (yet) enforced in type definitions
--> /Users/akrug/.cargo/registry/src/github.com-1ecc6299db9ec823/rusoto_credential-0.11.0/src/lib.rs:290:1
|
290 | / pub type AutoRefreshingProviderSync<P: ProvideAwsCredentials + 'static> =
291 | | BaseAutoRefreshingProvider<P, Mutex<Shared<P::Future>>>;
| |____________________________________________________________^
warning[E0122]: trait bounds are not (yet) enforced in type definitions
--> /Users/akrug/.cargo/registry/src/github.com-1ecc6299db9ec823/rusoto_credential-0.11.0/src/lib.rs:318:1
|
318 | / pub type AutoRefreshingProvider<P: ProvideAwsCredentials + 'static> =
319 | | BaseAutoRefreshingProvider<P, RefCell<Shared<P::Future>>>;
| |______________________________________________________________^
error[E0599]: no method named `to_ascii_lowercase` found for type `std::string::String` in the current scope
--> /Users/akrug/.cargo/registry/src/github.com-1ecc6299db9ec823/rusoto_credential-0.11.0/src/profile.rs:215:46
|
215 | let lower_case_line = unwrapped_line.to_ascii_lowercase().to_string();
| ^^^^^^^^^^^^^^^^^^
|
= help: items from traits can only be used if the trait is in scope
= note: the following trait is implemented but not in scope, perhaps add a `use` for it:
candidate #1: `use std::ascii::AsciiExt;`
error: aborting due to previous error
error: Could not compile `rusoto_credential`.
To learn more, run the command again with --verbose.
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workinghighFeature has high priorityFeature has high priorityneeds assignmentIssue that needs a Sprint or may be implemented in a future release.Issue that needs a Sprint or may be implemented in a future release.requires testThis feature or implementation requires a test to be added to lib.rs test structure.This feature or implementation requires a test to be added to lib.rs test structure.