Skip to content

Commit 99e5df6

Browse files
committedDec 22, 2024·
Deps upgrade
1 parent 07d4008 commit 99e5df6

File tree

7 files changed

+75
-69
lines changed

7 files changed

+75
-69
lines changed
 

‎Cargo.lock

+66-60
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎tchatchers_async/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ version = "0.1.0"
44
edition = "2021"
55

66
[dependencies]
7-
anyhow = "1.0.94"
7+
anyhow = "1.0.95"
88
dotenv = { version = "0.15.0", default-features = false }
9-
env_logger = "0.11.5"
9+
env_logger = "0.11.6"
1010
log = "0.4.22"
1111
serde = { version = "1.0.216", features = ["derive"] }
1212
serde_yaml = { version = "0.9.34" }

‎tchatchers_back/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ serde = { default-features = false, version = "1.0.216" }
2020
sqlx = {features = ["uuid", "postgres"], version = "0.8" }
2121
tower = { default-features = false, version = "0.5.2" }
2222
mime = "0.3.17"
23-
anyhow = "1.0.94"
23+
anyhow = "1.0.95"
2424
redis = { version = "0.27.6", features = ["aio", "tokio-comp"], default-features = false }
2525
bincode = "1.3.3"
26-
serde_json = "1.0.133"
26+
serde_json = "1.0.134"

‎tchatchers_cli_tools/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ sqlx = { version = "0.8", features = ["macros"], default-features = false }
1313
derive_more = { features = ["from", "constructor"], default-features = false, version = "1.0.0" }
1414
tokio = { version = "1.42.0", features = ["macros", "rt-multi-thread", "signal"], default-features = false }
1515
dotenv = "0.15.0"
16-
which = "7.0.0"
16+
which = "7.0.1"
1717
validator = "0.19.0"
1818
log = "0.4.22"
19-
env_logger = { version = "0.11.5" }
19+
env_logger = { version = "0.11.6" }
2020
askama = { default-features = false, version = "0.12.1" }
2121
clap-verbosity-flag = "3.0.2"
2222
redis = { version = "0.27.6", features = ["aio", "tokio-comp"], default-features = false }

‎tchatchers_core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ serde_yaml = "0.9.34"
3232
tokio = { version = "1.42.0", features = ["fs"], optional=true }
3333
tchatchers_macro = { path = "../tchatchers_macro"}
3434
bincode = "1.3.3"
35-
serde_json = { version = "1.0.133", optional = true}
35+
serde_json = { version = "1.0.134", optional = true}

‎tchatchers_front/services/chat_service/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ edition = "2021"
99
futures = "0.3.31"
1010
gloo-console = "0.3.0"
1111
gloo-net = "0.6.0"
12-
serde_json = "1.0.133"
12+
serde_json = "1.0.134"
1313
tchatchers_core = { version = "0.1.0", path = "../../../tchatchers_core", features = ["front"] }
1414
wasm-bindgen-futures = "0.4.49"
1515
yew-agent = "0.3.0"

‎tchatchers_macro/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ proc-macro = true
99
[dependencies]
1010
proc-macro2 = "1.0.92"
1111
quote = "1.0.37"
12-
syn = { version = "2.0.90", features = ["full"]}
12+
syn = { version = "2.0.91", features = ["full"]}

0 commit comments

Comments
 (0)
Please sign in to comment.