Unverified Commit f1af4435 authored by Fahad Zubair's avatar Fahad Zubair Committed by GitHub
Browse files

aws-smithy-http-server crates to be published as part of release cycle (#1563)

Include aws-smithy-http-server and aws-smithy-http-server-python in the list of crates that are automatically published to crates.io on each release of smithy-rs.
parent 5ee95433
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -31,7 +31,10 @@ object CrateSet {

    val AWS_SDK_SMITHY_RUNTIME = SMITHY_RUNTIME_COMMON

    val SERVER_SMITHY_RUNTIME = SMITHY_RUNTIME_COMMON + listOf("aws-smithy-http-server")
    val SERVER_SMITHY_RUNTIME = SMITHY_RUNTIME_COMMON + listOf(
        "aws-smithy-http-server",
        "aws-smithy-http-server-python"
    )

    val ENTIRE_SMITHY_RUNTIME = (AWS_SDK_SMITHY_RUNTIME + SERVER_SMITHY_RUNTIME).toSortedSet()
}
+1 −2
Original line number Diff line number Diff line
@@ -10,8 +10,7 @@ categories = ["asynchronous", "web-programming", "api-bindings"]
description = """
Python server runtime for Smithy Rust Server Framework.
"""
# until this is not stable, it is not publishable.
publish = false
publish = true

# [lib]
# name = "aws_smithy_http_server_python"
+1 −2
Original line number Diff line number Diff line
@@ -10,8 +10,7 @@ categories = ["asynchronous", "web-programming", "api-bindings"]
description = """
Server runtime for Smithy Rust Server Framework.
"""
# until this is not stable, it is not publishable.
publish = false
publish = true

[dependencies]
aws-smithy-http = { path = "../aws-smithy-http", features = ["rt-tokio"] }