Skip to content

Commit d5ac09e

Browse files
committed
0.4.3
1 parent 55fdd6a commit d5ac09e

File tree

4 files changed

+29
-25
lines changed

4 files changed

+29
-25
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.4.3
2+
## Changes
3+
1. Update dependencies.
4+
15
# 0.4.2
26
## Changes
37
1. entity_timestamp macro need to import `chrono` manually.

actix-cloud-codegen/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "actix-cloud-codegen"
3-
version = "0.2.2"
3+
version = "0.2.3"
44
edition = "2021"
55
authors = ["MXWXZ <matrixwxz@gmail.com>"]
66
description = "Proc macros for Actix Cloud."
@@ -13,11 +13,11 @@ i18n = ["dep:rust-i18n-support"]
1313
seaorm = []
1414

1515
[dependencies]
16-
quote = "1.0.36"
17-
syn = "2.0.74"
18-
proc-macro2 = "1.0.86"
16+
quote = "1.0.37"
17+
syn = "2.0.79"
18+
proc-macro2 = "1.0.88"
1919

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

2222
[lib]
2323
proc-macro = true

actix-cloud/Cargo.toml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "actix-cloud"
3-
version = "0.4.2"
3+
version = "0.4.3"
44
edition = "2021"
55
authors = ["MXWXZ <matrixwxz@gmail.com>"]
66
description = "Actix Cloud is an all-in-one web framework based on Actix Web."
@@ -58,21 +58,21 @@ csrf = ["dep:qstring", "dep:enum-as-inner"]
5858
[dependencies]
5959
actix-web = { version = "4.9.0", features = ["secure-cookies"] }
6060
parking_lot = "0.12.3"
61-
thiserror = "1.0.63"
62-
tokio = { version = "1.39.2", features = ["full"] }
63-
async-trait = "0.1.81"
61+
thiserror = "1.0.64"
62+
tokio = { version = "1.40.0", features = ["full"] }
63+
async-trait = "0.1.83"
6464
chrono = "0.4.38"
65-
futures = "0.3.30"
66-
anyhow = "1.0.86"
65+
futures = "0.3.31"
66+
anyhow = "1.0.89"
6767
rand = "0.8.5"
6868
hex = "0.4.3"
6969

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

7272
# serde
73-
serde = { version = "1.0.208", features = ["derive"], optional = true }
74-
serde_json = { version = "1.0.125", optional = true }
75-
serde_with = { version = "3.9.0", optional = true }
73+
serde = { version = "1.0.210", features = ["derive"], optional = true }
74+
serde_json = { version = "1.0.129", optional = true }
75+
serde_with = { version = "3.11.0", optional = true }
7676

7777
# logger
7878
tracing = { version = "0.1.40", optional = true }
@@ -83,14 +83,14 @@ tracing-subscriber = { version = "0.3.18", features = [
8383
colored = { version = "2.1.0", optional = true }
8484

8585
# redis
86-
redis = { version = "0.26.1", features = [
86+
redis = { version = "0.27.4", features = [
8787
"tokio-rustls-comp",
8888
"connection-manager",
8989
], optional = true }
9090

9191
# rustls
92-
rustls = { version = "0.23.12", optional = true }
93-
rustls-pemfile = { version = "2.1.2", optional = true }
92+
rustls = { version = "0.23.15", optional = true }
93+
rustls-pemfile = { version = "2.2.0", optional = true }
9494

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

101101
# build
102102
walkdir = { version = "2.5.0", optional = true }
103-
yaml-rust2 = { version = "0.8.1", optional = true }
104-
quote = { version = "1.0.36", optional = true }
105-
syn = { version = "2.0.74", optional = true }
106-
prettyplease = { version = "0.2.20", optional = true }
103+
yaml-rust2 = { version = "0.9.0", optional = true }
104+
quote = { version = "1.0.37", optional = true }
105+
syn = { version = "2.0.79", optional = true }
106+
prettyplease = { version = "0.2.22", optional = true }
107107

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

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

114114
# csrf
115115
qstring = { version = "0.7.2", optional = true }
116-
enum-as-inner = { version = "0.6.0", optional = true }
116+
enum-as-inner = { version = "0.6.1", optional = true }
117117

118118
[package.metadata.docs.rs]
119119
all-features = true

examples/config/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ version = "0.1.0"
44
edition = "2021"
55

66
[dependencies]
7-
serde = { version = "1.0.205", features = ["derive"] }
7+
serde = { version = "1.0.210", features = ["derive"] }
88
validator = { version = "0.18.1", features = ["derive", "card", "unic"] }
9-
serde-inline-default = "0.2.0"
9+
serde-inline-default = "0.2.2"
1010

1111
actix-cloud = { path = "../../actix-cloud", default-features = false, features = [
1212
"config",

0 commit comments

Comments
 (0)