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

Set minimum `hyper` version to `0.14.12` (#1602)

parent 6e031dcd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@ aws-types = { path = "../../sdk/build/aws-sdk/sdk/aws-types" }
time = { version = "0.3.4", features = ["parsing"] }
tokio = { version = "1", features = ["sync"] }
tracing = { version = "0.1" }
hyper = { version = "0.14", default-features = false }
hyper = { version = "0.14.12", default-features = false }

aws-http = { path = "../../sdk/build/aws-sdk/sdk/aws-http" }
aws-smithy-http = { path = "../../sdk/build/aws-sdk/sdk/aws-smithy-http" }
+1 −1
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@ bytes = "1"
bytes-utils = "0.1.2"
http = "0.2.3"
http-body = "0.4.5"
hyper = "0.14"
hyper = "0.14.12"
serde_json = "1"
tempfile = "3"
smol = "1.2"
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@ object PythonServerCargoDependency {
    val Tracing: CargoDependency = CargoDependency("tracing", CratesIo("0.1"))
    val Tower: CargoDependency = CargoDependency("tower", CratesIo("0.4"))
    val TowerHttp: CargoDependency = CargoDependency("tower-http", CratesIo("0.3"), features = setOf("trace"))
    val Hyper: CargoDependency = CargoDependency("hyper", CratesIo("0.14"), features = setOf("server", "http1", "http2", "tcp", "stream"))
    val Hyper: CargoDependency = CargoDependency("hyper", CratesIo("0.14.12"), features = setOf("server", "http1", "http2", "tcp", "stream"))
    val NumCpus: CargoDependency = CargoDependency("num_cpus", CratesIo("1.13"))

    fun SmithyHttpServer(runtimeConfig: RuntimeConfig) = runtimeConfig.runtimeCrate("http-server")
+1 −1
Original line number Diff line number Diff line
@@ -196,7 +196,7 @@ data class CargoDependency(
        val Hex: CargoDependency = CargoDependency("hex", CratesIo("0.4.3"))
        val HttpBody: CargoDependency = CargoDependency("http-body", CratesIo("0.4.4"))
        val Http: CargoDependency = CargoDependency("http", CratesIo("0.2"))
        val Hyper: CargoDependency = CargoDependency("hyper", CratesIo("0.14"))
        val Hyper: CargoDependency = CargoDependency("hyper", CratesIo("0.14.12"))
        val HyperWithStream: CargoDependency = Hyper.withFeature("stream")
        val LazyStatic: CargoDependency = CargoDependency("lazy_static", CratesIo("1.4"))
        val Md5: CargoDependency = CargoDependency("md-5", CratesIo("0.10"), rustName = "md5")
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@ bytes = "1"
fastrand = "1.4.0"
http = "0.2.3"
http-body = "0.4.4"
hyper = { version = "0.14", features = ["client", "http2", "http1"], optional = true }
hyper = { version = "0.14.12", features = ["client", "http2", "http1"], optional = true }
hyper-rustls = { version = "0.22.1", optional = true, features = ["rustls-native-certs"] }
hyper-tls = { version = "0.5.0", optional = true }
lazy_static = { version = "1", optional = true }
Loading