Skip to content

Commit

Permalink
0.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
MXWXZ committed Oct 18, 2024
1 parent 55fdd6a commit d5ac09e
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 25 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.4.3
## Changes
1. Update dependencies.

# 0.4.2
## Changes
1. entity_timestamp macro need to import `chrono` manually.
Expand Down
10 changes: 5 additions & 5 deletions actix-cloud-codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "actix-cloud-codegen"
version = "0.2.2"
version = "0.2.3"
edition = "2021"
authors = ["MXWXZ <[email protected]>"]
description = "Proc macros for Actix Cloud."
Expand All @@ -13,11 +13,11 @@ i18n = ["dep:rust-i18n-support"]
seaorm = []

[dependencies]
quote = "1.0.36"
syn = "2.0.74"
proc-macro2 = "1.0.86"
quote = "1.0.37"
syn = "2.0.79"
proc-macro2 = "1.0.88"

rust-i18n-support = { version = "3.1.1", optional = true }
rust-i18n-support = { version = "3.1.2", optional = true }

[lib]
proc-macro = true
Expand Down
36 changes: 18 additions & 18 deletions actix-cloud/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "actix-cloud"
version = "0.4.2"
version = "0.4.3"
edition = "2021"
authors = ["MXWXZ <[email protected]>"]
description = "Actix Cloud is an all-in-one web framework based on Actix Web."
Expand Down Expand Up @@ -58,21 +58,21 @@ csrf = ["dep:qstring", "dep:enum-as-inner"]
[dependencies]
actix-web = { version = "4.9.0", features = ["secure-cookies"] }
parking_lot = "0.12.3"
thiserror = "1.0.63"
tokio = { version = "1.39.2", features = ["full"] }
async-trait = "0.1.81"
thiserror = "1.0.64"
tokio = { version = "1.40.0", features = ["full"] }
async-trait = "0.1.83"
chrono = "0.4.38"
futures = "0.3.30"
anyhow = "1.0.86"
futures = "0.3.31"
anyhow = "1.0.89"
rand = "0.8.5"
hex = "0.4.3"

actix-cloud-codegen = { version = "0.2.2", path = "../actix-cloud-codegen" }

# serde
serde = { version = "1.0.208", features = ["derive"], optional = true }
serde_json = { version = "1.0.125", optional = true }
serde_with = { version = "3.9.0", optional = true }
serde = { version = "1.0.210", features = ["derive"], optional = true }
serde_json = { version = "1.0.129", optional = true }
serde_with = { version = "3.11.0", optional = true }

# logger
tracing = { version = "0.1.40", optional = true }
Expand All @@ -83,14 +83,14 @@ tracing-subscriber = { version = "0.3.18", features = [
colored = { version = "2.1.0", optional = true }

# redis
redis = { version = "0.26.1", features = [
redis = { version = "0.27.4", features = [
"tokio-rustls-comp",
"connection-manager",
], optional = true }

# rustls
rustls = { version = "0.23.12", optional = true }
rustls-pemfile = { version = "2.1.2", optional = true }
rustls = { version = "0.23.15", optional = true }
rustls-pemfile = { version = "2.2.0", optional = true }

# session
actix-utils = { version = "3.0.1", optional = true }
Expand All @@ -100,20 +100,20 @@ config = { version = "0.14.0", optional = true }

# build
walkdir = { version = "2.5.0", optional = true }
yaml-rust2 = { version = "0.8.1", optional = true }
quote = { version = "1.0.36", optional = true }
syn = { version = "2.0.74", optional = true }
prettyplease = { version = "0.2.20", optional = true }
yaml-rust2 = { version = "0.9.0", optional = true }
quote = { version = "1.0.37", optional = true }
syn = { version = "2.0.79", optional = true }
prettyplease = { version = "0.2.22", optional = true }

# traceid
tracing-actix-web = { version = "0.7.11", optional = true }
tracing-actix-web = { version = "0.7.13", optional = true }

# memorydb
glob = { version = "0.3.1", optional = true }

# csrf
qstring = { version = "0.7.2", optional = true }
enum-as-inner = { version = "0.6.0", optional = true }
enum-as-inner = { version = "0.6.1", optional = true }

[package.metadata.docs.rs]
all-features = true
Expand Down
4 changes: 2 additions & 2 deletions examples/config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ version = "0.1.0"
edition = "2021"

[dependencies]
serde = { version = "1.0.205", features = ["derive"] }
serde = { version = "1.0.210", features = ["derive"] }
validator = { version = "0.18.1", features = ["derive", "card", "unic"] }
serde-inline-default = "0.2.0"
serde-inline-default = "0.2.2"

actix-cloud = { path = "../../actix-cloud", default-features = false, features = [
"config",
Expand Down

0 comments on commit d5ac09e

Please sign in to comment.