Unverified Commit b382ebc0 authored by John DiSanti's avatar John DiSanti Committed by GitHub
Browse files

Upgrade cargo-check-external-types to 0.1.11 (#3413)

_By submitting this pull request, I confirm that you can use, modify,
copy, and redistribute this contribution, under the terms of your
choice._
parent f7be5f80
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -30,7 +30,7 @@ env:
  apt_dependencies: libssl-dev gnuplot jq
  java_version: 11
  rust_toolchain_components: clippy,rustfmt
  rust_nightly_version: nightly-2023-10-10
  rust_nightly_version: nightly-2024-02-07

jobs:
  generate-diff:
+1 −0
Original line number Diff line number Diff line
@@ -189,6 +189,7 @@ impl InstantSleep {
/// task.await.expect("successful completion");
/// # };
/// ```
#[allow(dead_code)] // unused fields retained for their `Drop` impls
pub struct CapturedSleep<'a>(oneshot::Sender<()>, &'a SleepGate, Duration);
impl CapturedSleep<'_> {
    /// Allow the calling code to advance past the call to [`AsyncSleep::sleep`]
+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@ repository = "https://github.com/smithy-lang/smithy-rs"
aws-smithy-http = { path = "../aws-smithy-http" }
aws-smithy-types = { path = "../aws-smithy-types" }
bytes = "1"
crc32c = "0.6.2"
crc32c = "0.6.5"
crc32fast = "1.3"
hex = "0.4.3"
http = "0.2.8"
+0 −2
Original line number Diff line number Diff line
@@ -83,8 +83,6 @@ macro_rules! opaque_future {
    };
}

pub use opaque_future;

macro_rules! convert_to_request_rejection {
    ($from:ty, $to:ident) => {
        impl From<$from> for RequestRejection {
+1 −1
Original line number Diff line number Diff line
@@ -202,7 +202,7 @@ mod tests {
    impl Thing for Thingamajig {}

    #[derive(Debug)]
    struct SharedThing(Arc<dyn Thing>);
    struct SharedThing(#[allow(dead_code)] Arc<dyn Thing>);
    impl Thing for SharedThing {}
    impl SharedThing {
        fn new(thing: impl Thing + 'static) -> Self {
Loading