-
-
Notifications
You must be signed in to change notification settings - Fork 217
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* wip * wip * wip * wip * Format Rust code using rustfmt * chore(deps): update rustls-pemfile requirement from 1 to 2 Updates the requirements on [rustls-pemfile](https://github.com/rustls/pemfile) to permit the latest version. - [Release notes](https://github.com/rustls/pemfile/releases) - [Commits](rustls/pemfile@v/1.0.0...v/1.0.4) --- updated-dependencies: - dependency-name: rustls-pemfile dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * wip * wip * rustls * u * wip * Format Rust code using rustfmt * wip * wip * wip * Format Rust code using rustfmt * wip * cargo clippy * wip * wip * wip * wip * fix tower compact * Format Rust code using rustfmt * Update version 0.61.0 * fix ci * Format Rust code using rustfmt --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information
1 parent
59a6b13
commit 79ec353
Showing
53 changed files
with
1,011 additions
and
598 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 |
---|---|---|
|
@@ -3,7 +3,7 @@ members = ["crates/*"] | |
resolver = "2" | ||
|
||
[workspace.package] | ||
version = "0.61.0" | ||
version = "0.62.0" | ||
authors = ["Chrislearn Young <[email protected]>"] | ||
edition = "2021" | ||
rust-version = "1.70" | ||
|
@@ -16,14 +16,27 @@ documentation = "https://docs.rs/salvo/" | |
readme = "./README.md" | ||
keywords = ["http", "async", "web", "framework", "server"] | ||
license = "MIT OR Apache-2.0" | ||
categories = [ | ||
"web-programming::http-server", | ||
"web-programming::websocket", | ||
"network-programming", | ||
"asynchronous", | ||
] | ||
categories = ["web-programming::http-server", "web-programming::websocket", "network-programming", "asynchronous"] | ||
|
||
[workspace.dependencies] | ||
salvo_macros = { version = "0.62.0", path = "crates/macros", default-features = false } | ||
salvo_core = { version = "0.62.0", path = "crates/core", default-features = false } | ||
salvo_extra = { version = "0.62.0", path = "crates/extra", default-features = false } | ||
salvo-compression = { version = "0.62.0", path = "crates/compression", default-features = false } | ||
salvo-cache = { version = "0.62.0", path = "crates/cache", default-features = false } | ||
salvo-cors = { version = "0.62.0", path = "crates/cors", default-features = false } | ||
salvo-csrf = { version = "0.62.0", path = "crates/csrf", default-features = false } | ||
salvo-flash = { version = "0.62.0", path = "crates/flash", default-features = false } | ||
salvo-http3 = { version = "0.0.5", default-features = false } | ||
salvo-jwt-auth = { version = "0.62.0", path = "crates/jwt-auth", default-features = false } | ||
salvo-oapi = { version = "0.62.0", path = "./crates/oapi", default-features = false } | ||
salvo-oapi-macros = { version = "0.62.0", path = "crates/oapi-macros", default-features = false } | ||
salvo-otel = { version = "0.62.0", path = "crates/otel", default-features = false } | ||
salvo-proxy = { version = "0.62.0", path = "crates/proxy", default-features = false } | ||
salvo-rate-limiter = { version = "0.62.0", path = "crates/rate-limiter", default-features = false } | ||
salvo-serve-static = { version = "0.62.0", path = "crates/serve-static", default-features = false } | ||
salvo-session = { version = "0.62.0", path = "crates/session", default-features = false } | ||
|
||
aead = "0.5" | ||
aes-gcm = "0.10" | ||
anyhow = "1" | ||
|
@@ -47,13 +60,15 @@ fastrand = "2" | |
form_urlencoded = "1" | ||
futures-channel = "0.3" | ||
futures-util = { version = "0.3", default-features = false } | ||
headers = "0.3" | ||
http = "0.2" | ||
http-body-util = "0.1.0-rc.3" | ||
headers = "0.4" | ||
http = "1" | ||
http-body-util = "0.1" | ||
hmac = "0.12" | ||
hex = "0.4" | ||
hostname-validator = "1" | ||
hyper = "=1.0.0-rc.4" | ||
hyper = { version = "1", features = ["full"] } | ||
hyper-util = { version = "0.1.1", default-features = true } | ||
hyper-tls = "0.6" | ||
indexmap = "2" | ||
inventory = "0.3" | ||
jsonwebtoken = "9.1" | ||
|
@@ -82,30 +97,11 @@ quote = "1" | |
rand = "0.8" | ||
rcgen = "0.11" | ||
regex = "1" | ||
reqwest = { version = "0.11", default-features = false } | ||
ring = "0.17" | ||
rust_decimal = "1" | ||
rustls = "0.21" | ||
rustls-pemfile = "1" | ||
rust-embed = { version = ">= 6, <= 9" } | ||
salvo-utils = { version = "0.0.6", default-features = true } | ||
salvo_macros = { version = "0.61.0", path = "crates/macros", default-features = false } | ||
salvo_core = { version = "0.61.0", path = "crates/core", default-features = false } | ||
salvo_extra = { version = "0.61.0", path = "crates/extra", default-features = false } | ||
salvo-compression = { version = "0.61.0", path = "crates/compression", default-features = false } | ||
salvo-cache = { version = "0.61.0", path = "crates/cache", default-features = false } | ||
salvo-cors = { version = "0.61.0", path = "crates/cors", default-features = false } | ||
salvo-csrf = { version = "0.61.0", path = "crates/csrf", default-features = false } | ||
salvo-flash = { version = "0.61.0", path = "crates/flash", default-features = false } | ||
salvo-http3 = { version = "0.0.4", default-features = false } | ||
salvo-jwt-auth = { version = "0.61.0", path = "crates/jwt-auth", default-features = false } | ||
salvo-oapi = { version = "0.61.0", path = "./crates/oapi", default-features = false } | ||
salvo-oapi-macros = { version = "0.61.0", path = "crates/oapi-macros", default-features = false } | ||
salvo-otel = { version = "0.61.0", path = "crates/otel", default-features = false } | ||
salvo-proxy = { version = "0.61.0", path = "crates/proxy", default-features = false } | ||
salvo-rate-limiter = { version = "0.61.0", path = "crates/rate-limiter", default-features = false } | ||
salvo-serve-static = { version = "0.61.0", path = "crates/serve-static", default-features = false } | ||
salvo-session = { version = "0.61.0", path = "crates/session", default-features = false } | ||
rustls = "0.22" | ||
rustls-pemfile = "2" | ||
rust-embed = { version = ">= 6, <= 8" } | ||
serde = "1" | ||
serde_json = "1" | ||
serde-xml-rs = "0.6" | ||
|
@@ -120,7 +116,7 @@ thiserror = "1" | |
time = "0.3" | ||
tokio = "1" | ||
tokio-native-tls = "0.3" | ||
tokio-rustls = "0.24" | ||
tokio-rustls = "0.25" | ||
tokio-openssl = "0.6" | ||
tokio-stream = { version = "0.1", default-features = false } | ||
tokio-tungstenite = { version = "0.21", default-features = false } | ||
|
@@ -137,4 +133,4 @@ x509-parser = "0.15" | |
# Compress | ||
brotli = { version = "3.3", default-features = false } | ||
flate2 = { version = "1.0", default-features = false } | ||
zstd = { version = "0.13", default-features = false } | ||
zstd = { version = "0.13", default-features = false } |
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
Oops, something went wrong.