Skip to content

Commit

Permalink
Version 0.35.2
Browse files Browse the repository at this point in the history
  • Loading branch information
chrislearn committed Sep 22, 2022
1 parent bebed82 commit 87e3474
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions core/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "salvo_core"
version = "0.35.1"
version = "0.35.2"
authors = ["Chrislearn Young <chrislearn@hotmail.com>", "driftluo <driftluo@foxmail.com>"]
edition = "2021"
description = """
Expand Down Expand Up @@ -57,7 +57,7 @@ rcgen = { version = "0.9", optional = true }
regex = "1"
ring = { version = "0.16", optional = true }
rustls-pemfile = { version = "1.0", optional = true }
salvo_macros = { version = "0.35.1", path = "../macros" }
salvo_macros = { version = "0.35.2", path = "../macros" }
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1", features = ["raw_value"] }
serde_urlencoded = { version = "0.7", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion examples/db-sea-orm/Cargo.toml
Expand Up @@ -6,7 +6,7 @@ publish = false

[dependencies]
tokio = { version = "1.21.1", features = ["macros", "rt-multi-thread"] }
salvo = { version = "0.35.1", features = ["affix", "serve-static"] }
salvo = { version = "0.35.2", features = ["affix", "serve-static"] }
tracing = "0.1.36"
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
serde = { version = "1.0.144", features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions extra/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "salvo_extra"
version = "0.35.1"
version = "0.35.2"
authors = ["Chrislearn Young <chrislearn@hotmail.com>"]
edition = "2021"
description = """
Expand Down Expand Up @@ -67,7 +67,7 @@ percent-encoding = { version = "2", optional = true }
pin-project = { version = "1", optional = true }
rand = { version = "0.8", optional = true }
rust-embed = { version = "6", optional = true }
salvo_core = { version = "0.35.1", default-features = false, path = "../core" }
salvo_core = { version = "0.35.2", default-features = false, path = "../core" }
serde = { version = "1", features = ["derive"], optional = true }
serde_json = { version = "1", optional = true }
sha2 = { version = "0.10", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion macros/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "salvo_macros"
version = "0.35.1"
version = "0.35.2"
authors = ["Chrislearn Young <chrislearn@hotmail.com>", "driftluo <driftluo@foxmail.com>"]
edition = "2021"
description = "salvo proc macros"
Expand Down
6 changes: 3 additions & 3 deletions salvo/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "salvo"
version = "0.35.1"
version = "0.35.2"
authors = ["Chrislearn Young <chrislearn@hotmail.com>"]
edition = "2021"
description = """
Expand Down Expand Up @@ -65,5 +65,5 @@ ws = ["salvo_extra/ws"]
caching-headers = ["salvo_extra/caching-headers"]

[dependencies]
salvo_core = { version = "0.35.1", default-features = false, path = "../core" }
salvo_extra = { version = "0.35.1", default-features = false, optional = true, path = "../extra" }
salvo_core = { version = "0.35.2", default-features = false, path = "../core" }
salvo_extra = { version = "0.35.2", default-features = false, optional = true, path = "../extra" }

0 comments on commit 87e3474

Please sign in to comment.