-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #95 from Jzow/master
upgrade: upgrade summer-boot 1.4.2 version
- Loading branch information
Showing
13 changed files
with
72 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
[workspace] | ||
resolver = "2" | ||
members = [ | ||
"summer-boot", | ||
# other members | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
[package] | ||
name = "example" | ||
version = "0.1.0" | ||
rust-version = "1.60.0" | ||
rust-version = "1.73.0" | ||
edition = "2021" | ||
description = "summer boot example" | ||
authors = [ | ||
"James Zow <[email protected]>" | ||
"James Zow <[email protected]>", | ||
"WanSen AI Team <[email protected]>" | ||
] | ||
license = "Apache-2.0" | ||
|
||
|
@@ -18,4 +19,4 @@ schemars = "0.8.8" | |
tokio = { version = "1.19.2", features = ["full"] } | ||
|
||
#summer | ||
summer-boot = { version = "1.3", path = "../summer-boot" } | ||
summer-boot = { version = "1.4.2", path = "../summer-boot" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
|
||
mod configuration_properties; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
[package] | ||
name = "summer-boot-autoconfigure" | ||
version = "1.4.0" | ||
rust-version = "1.60.0" | ||
version = "1.4.1" | ||
rust-version = "1.73.0" | ||
edition = "2021" | ||
description = "summer boot autoconfigure" | ||
authors = [ | ||
"James Zow <[email protected]>", | ||
"Xinyu Gao <[email protected]>", | ||
"Summeros Team <team@summeros.org>" | ||
"WanSen AI Team <team@wansenai.com>" | ||
] | ||
license = "Apache-2.0" | ||
readme = "README.md" | ||
keywords = ["middleware", "autoconfigure", "summer"] | ||
documentation = "https://github.com/summer-os/summer-boot/summer-boot-autoconfigure/#readme" | ||
repository = "https://github.com/summer-os/summer-boot" | ||
homepage = "https://summeros.io/" | ||
documentation = "https://github.com/wansenai/summer-boot#readme" | ||
repository = "https://github.com/wansenai/summer-boot" | ||
homepage = "https://crates.io/crates/summer-boot" | ||
|
||
|
||
[dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
[package] | ||
name = "summer-boot-macro" | ||
version = "1.4.0" | ||
rust-version = "1.60.0" | ||
version = "1.4.1" | ||
rust-version = "1.73.0" | ||
edition = "2021" | ||
description = "summer boot macro" | ||
license = "Apache-2.0" | ||
authors = [ | ||
"James Zow <[email protected]>", | ||
"Yangandmore <[email protected]>", | ||
"Summeros Team <team@summeros.org>" | ||
"WanSen AI Team <team@wansenai.com>" | ||
] | ||
readme = "README.md" | ||
documentation = "https://github.com/summer-os/summer-boot/blob/master/summer-boot-macro/README.md" | ||
repository = "https://github.com/summer-os/summer-boot" | ||
homepage = "https://summeros.io/" | ||
documentation = "https://github.com/wansenai/summer-boot#readme" | ||
repository = "https://github.com/wansenai/summer-boot" | ||
homepage = "https://crates.io/crates/summer-boot" | ||
|
||
[lib] | ||
proc-macro = true | ||
|
@@ -25,7 +25,7 @@ syn = { version = "1.0", features = ["full"] } | |
toml = "0.8" | ||
serde = { version = "1", features = ["derive"] } | ||
serde_json = "1" | ||
summer-boot-autoconfigure = { version = "1.4", path = "../summer-boot-autoconfigure"} | ||
summer-boot-autoconfigure = { version = "1.4.1", path = "../summer-boot-autoconfigure"} | ||
|
||
[dev-dependencies] | ||
summer-boot = { version = "1.4", path = "../summer-boot" } | ||
summer-boot = { version = "1.4.1", path = "../summer-boot" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
[package] | ||
name = "summer-boot" | ||
version = "1.4.0" | ||
rust-version = "1.60.0" | ||
version = "1.4.2" | ||
rust-version = "1.73.0" | ||
edition = "2021" | ||
description = "summer boot" | ||
authors = [ | ||
"James Zow <[email protected]>", | ||
"Summeros Team <team@summeros.org>" | ||
"WanSen AI Team <team@wansenai.com>" | ||
] | ||
license = "Apache-2.0" | ||
readme = "README.md" | ||
keywords = ["tcp", "http", "web", "summer"] | ||
documentation = "https://github.com/summer-os/summer-boot#readme" | ||
repository = "https://github.com/summer-os/summer-boot" | ||
homepage = "https://summeros.io/" | ||
documentation = "https://github.com/wansenai/summer-boot#readme" | ||
repository = "https://github.com/wansenai/summer-boot" | ||
homepage = "https://crates.io/crates/summer-boot" | ||
|
||
[features] | ||
default = ["macros", "async-h1"] | ||
default = ["macros"] | ||
macros = [ | ||
"summer-boot-macro" | ||
] | ||
|
@@ -33,7 +33,6 @@ async-std = { version = "1.8.0", features = ["attributes"] } | |
async-trait = "0.1.41" | ||
async-channel = "1.5.1" | ||
async-dup = "1.2.2" | ||
async-h1 = { version = "2.3.0", optional = true } | ||
|
||
#pin | ||
pin-project = "1.0.2" | ||
|
@@ -46,7 +45,7 @@ futures-util = "0.3.6" | |
|
||
|
||
# summer dependencies | ||
summer-boot-macro = { version = "1.4" , optional = true, path = "../summer-boot-macro"} | ||
summer-boot-macro = { version = "1.4.1" , optional = true, path = "../summer-boot-macro"} | ||
|
||
#log | ||
femme = { version = "2.1.1"} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters