Skip to content

Commit

Permalink
Upgrades
Browse files Browse the repository at this point in the history
  • Loading branch information
nag763 committed Nov 13, 2024
1 parent 6c1ce38 commit f1694f8
Show file tree
Hide file tree
Showing 11 changed files with 419 additions and 133 deletions.
508 changes: 397 additions & 111 deletions Cargo.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 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.91"
anyhow = "1.0.93"
dotenv = { version = "0.15.0", default-features = false }
env_logger = "0.11.5"
log = "0.4.22"
serde = { version = "1.0.213", features = ["derive"] }
serde = { version = "1.0.215", 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"] }
tokio = { version = "1.41.1", default-features = false, features = ["rt", "macros", "rt-multi-thread", "time", "signal"] }
6 changes: 3 additions & 3 deletions tchatchers_back/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ tower-http = { version = "0.6.1", features = ["fs", "trace", "util", "request-id
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.213" }
validator = { version = "0.19.0"}
serde = { default-features = false, version = "1.0.215" }
sqlx = {features = ["uuid", "postgres"], version = "0.8" }
tower = { default-features = false, version = "0.5.1" }
mime = "0.3.17"
anyhow = "1.0.91"
anyhow = "1.0.93"
redis = { version = "0.27.5", features = ["aio", "tokio-comp"], default-features = false }
bincode = "1.3.3"
serde_json = "1.0.132"
8 changes: 4 additions & 4 deletions tchatchers_cli_tools/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ edition = "2021"

[dependencies]
tchatchers_core = { path = "../tchatchers_core", features = ["cli"] }
clap = { version = "4.5.20", features = ["derive", "std"]}
clap = { version = "4.5.21", features = ["derive", "std"]}
dialoguer = { features = ["password"], default-features = false, version = "0.11.0" }
sqlx = { version = "0.8", features = ["macros"], default-features = false }
derive_more = { features = ["from", "constructor"], default-features = false, version = "1.0.0" }
tokio = { version = "1.41.0", features = ["macros", "rt-multi-thread", "signal"], default-features = false }
tokio = { version = "1.41.1", features = ["macros", "rt-multi-thread", "signal"], default-features = false }
dotenv = "0.15.0"
which = "6.0.3"
validator = "0.18.1"
which = "7.0.0"
validator = "0.19.0"
log = "0.4.22"
env_logger = { version = "0.11.5" }
askama = { default-features = false, version = "0.12.1" }
Expand Down
8 changes: 4 additions & 4 deletions tchatchers_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,20 @@ 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.213", features = ["rc"], default-features = false }
serde = { version = "1.0.215", 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 }
validator = { version = "0.19.0", features = ["derive"], default-features = false }
axum = { version = "0.7.7", features = ["multipart"], optional = true , default-features = false }
derive_more = { features = ["display"], default-features = false, version = "1.0.0" }
log = "0.4.22"
axum-extra = { version = "0.9", features = ["cookie"], optional = true }
time = { default-features = false, version = "0.3.36" }
cookie = { version = "0.18.1", optional = true }
redis = { version = "0.27.5", optional = true, features = ["streams", "aio", "tokio-comp"], default-features = false }
clap = { version = "4.5.20", features = ["derive", "std"], optional = true}
clap = { version = "4.5.21", features = ["derive", "std"], optional = true}
serde_yaml = "0.9.34"
tokio = { version = "1.41.0", features = ["fs"], optional=true }
tokio = { version = "1.41.1", features = ["fs"], optional=true }
tchatchers_macro = { path = "../tchatchers_macro"}
bincode = "1.3.3"
serde_json = { version = "1.0.132", optional = true}
4 changes: 2 additions & 2 deletions 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.213", features = ["derive"] }
serde = { version = "1.0.215", 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 All @@ -22,6 +22,6 @@ chat_service = { path = "services/chat_service" }
chrono = { version = "0.4.38", features = ["serde"] }
js-sys = "0.3.72"
uuid = { version = "1.11.0", features = ["v4"] }
validator = "0.18.1"
validator = "0.19.0"
derive_more = { version = "1.0.0", features = ["deref", "deref_mut", "from"] }
bincode = "1.3.3"
4 changes: 2 additions & 2 deletions tchatchers_front/services/chat_service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ serde_json = "1.0.132"
tchatchers_core = { version = "0.1.0", path = "../../../tchatchers_core", features = ["front"] }
wasm-bindgen-futures = "0.4.45"
yew-agent = "0.3.0"
tokio = { version = "1.41.0", features = ["sync", "rt", "macros"] }
serde = { version = "1.0.213", features = ["derive"] }
tokio = { version = "1.41.1", features = ["sync", "rt", "macros"] }
serde = { version = "1.0.215", 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.213", features = ["derive"] }
serde = { version = "1.0.215", 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.213", features = ["derive"] }
serde = { version = "1.0.215", 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.213", features = ["derive"] }
serde = { version = "1.0.215", features = ["derive"] }
yew-agent = "0.3.0"
2 changes: 1 addition & 1 deletion tchatchers_macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ proc-macro = true
[dependencies]
proc-macro2 = "1.0.89"
quote = "1.0.37"
syn = { version = "2.0.85", features = ["full"]}
syn = { version = "2.0.87", features = ["full"]}

0 comments on commit f1694f8

Please sign in to comment.