Skip to content

Commit

Permalink
aws-smithy-http-server crates to be published as part of release cycle (
Browse files Browse the repository at this point in the history
#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.
  • Loading branch information
drganjoo authored Jul 21, 2022
1 parent 5ee9543 commit f1af443
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
5 changes: 4 additions & 1 deletion buildSrc/src/main/kotlin/CrateSet.kt
Original file line number Diff line number Diff line change
Expand Up @@ -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()
}
3 changes: 1 addition & 2 deletions rust-runtime/aws-smithy-http-server-python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
3 changes: 1 addition & 2 deletions rust-runtime/aws-smithy-http-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down

0 comments on commit f1af443

Please sign in to comment.