Skip to content

Commit

Permalink
(Temporary) ignore doctests to avoid cyclic deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Kroisse committed Sep 17, 2018
1 parent 0e6bbb8 commit d215a73
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 0 additions & 4 deletions rusoto/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,6 @@ rand = "0.4.2"
serde_json = "1.0.1"
serde_test = "1.0.1"

[dev-dependencies.rusoto_s3]
path = "../services/s3"
version = "0.34"

[features]
default = ["native-tls"]
nightly-testing = ["clippy", "rusoto_credential/nightly-testing"]
Expand Down
8 changes: 6 additions & 2 deletions rusoto/core/src/future.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ lazy_static! {
/// [`RusotoFuture`] instance. You can also use the [`From`] implementation on
/// the [`Result`] value.
///
/// ```rust
/// ```rust,ignore
/// # // TODO: remove ignore when the cyclic dependency issue has been fixed
/// # // https://github.com/rusoto/rusoto/pull/1141#issuecomment-421865362
/// # extern crate futures;
/// # extern crate rusoto_core;
/// # extern crate rusoto_s3;
Expand Down Expand Up @@ -156,7 +158,9 @@ impl<T, E> RusotoFuture<T, E> {
///
/// Unlike `set_timeout` this method can be easily chained:
///
/// ```rust
/// ```rust,ignore
/// # // TODO: remove ignore when the cyclic dependency issue has been fixed
/// # // https://github.com/rusoto/rusoto/pull/1141#issuecomment-421865362
/// # extern crate rusoto_core;
/// # extern crate rusoto_s3;
/// #
Expand Down

0 comments on commit d215a73

Please sign in to comment.