Skip to content

Commit

Permalink
Upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
nag763 committed Oct 27, 2024
1 parent 876b33d commit 6c1ce38
Show file tree
Hide file tree
Showing 10 changed files with 82 additions and 82 deletions.
140 changes: 70 additions & 70 deletions Cargo.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions tchatchers_async/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ version = "0.1.0"
edition = "2021"

[dependencies]
anyhow = "1.0.90"
anyhow = "1.0.91"
dotenv = { version = "0.15.0", default-features = false }
env_logger = "0.11.5"
log = "0.4.22"
serde = { version = "1.0.211", features = ["derive"] }
serde = { version = "1.0.213", features = ["derive"] }
serde_yaml = { version = "0.9.34" }
tchatchers_core = { path = "../tchatchers_core" , features = ["async"] }
tokio = { version = "1.41.0", default-features = false, features = ["rt", "macros", "rt-multi-thread", "time", "signal"] }
4 changes: 2 additions & 2 deletions tchatchers_back/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ tracing-subscriber = { version = "0.3", features = ["env-filter"]}
axum-extra = { version = "0.9.4", features = ["cookie", "typed-header"] }
tracing = { default-features = false, version = "0.1.40" }
validator = { version = "0.18.1"}
serde = { default-features = false, version = "1.0.211" }
serde = { default-features = false, version = "1.0.213" }
sqlx = {features = ["uuid", "postgres"], version = "0.8" }
tower = { default-features = false, version = "0.5.1" }
mime = "0.3.17"
anyhow = "1.0.90"
anyhow = "1.0.91"
redis = { version = "0.27.5", features = ["aio", "tokio-comp"], default-features = false }
bincode = "1.3.3"
serde_json = "1.0.132"
2 changes: 1 addition & 1 deletion tchatchers_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ derivative = "2.2.0"
jsonwebtoken = { default-features = false, version = "9.3.0" }
rand = { default-features = false, version = "0.8.5" }
rust-argon2 = { version = "2", optional = true, default-features = false }
serde = { version = "1.0.211", features = ["rc"], default-features = false }
serde = { version = "1.0.213", features = ["rc"], default-features = false }
sqlx = { version = "0.8", optional = true , features = ["runtime-async-std-native-tls", "postgres", "chrono", "uuid"] }
uuid = { version = "1.11.0", features = ["v4", "serde"], default-features = false }
validator = { version = "0.18.1", features = ["derive"], default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion tchatchers_front/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"
gloo-console = "0.3.0"
gloo-net = "0.6.0"
gloo-timers = "0.3.0"
serde = { version = "1.0.211", features = ["derive"] }
serde = { version = "1.0.213", features = ["derive"] }
wasm-bindgen = "0.2.95"
wasm-bindgen-futures = "0.4.45"
web-sys = { version = "0.3.72", features = ["HtmlDocument", "FileReader", "Event", "Navigator", "FormData"] }
Expand Down
2 changes: 1 addition & 1 deletion tchatchers_front/services/chat_service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ tchatchers_core = { version = "0.1.0", path = "../../../tchatchers_core", featur
wasm-bindgen-futures = "0.4.45"
yew-agent = "0.3.0"
tokio = { version = "1.41.0", features = ["sync", "rt", "macros"] }
serde = { version = "1.0.211", features = ["derive"] }
serde = { version = "1.0.213", features = ["derive"] }
2 changes: 1 addition & 1 deletion tchatchers_front/services/modal_service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ edition = "2021"

[dependencies]
gloo-console = "0.3.0"
serde = { version = "1.0.211", features = ["derive"] }
serde = { version = "1.0.213", features = ["derive"] }
yew-agent = "0.3.0"
2 changes: 1 addition & 1 deletion tchatchers_front/services/rmenu_service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
serde = { version = "1.0.211", features = ["derive"] }
serde = { version = "1.0.213", features = ["derive"] }
uuid = { version = "1.11.0", features = ["serde"] }
yew = "0.21.0"
yew-agent = "0.3.0"
Expand Down
2 changes: 1 addition & 1 deletion tchatchers_front/services/toast_service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
serde = { version = "1.0.211", features = ["derive"] }
serde = { version = "1.0.213", features = ["derive"] }
yew-agent = "0.3.0"
4 changes: 2 additions & 2 deletions tchatchers_macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ edition = "2021"
proc-macro = true

[dependencies]
proc-macro2 = "1.0.88"
proc-macro2 = "1.0.89"
quote = "1.0.37"
syn = { version = "2.0.82", features = ["full"]}
syn = { version = "2.0.85", features = ["full"]}

0 comments on commit 6c1ce38

Please sign in to comment.