Skip to content

Commit

Permalink
minor dependencies bump
Browse files Browse the repository at this point in the history
  • Loading branch information
“Giems” committed Feb 1, 2024
1 parent 9e8dbff commit 80f5d9c
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 33 deletions.
45 changes: 16 additions & 29 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,43 +2,30 @@
resolver = "2"
members = ["server"]
[workspace.dependencies]
rust_decimal = { version = "1.33.1", features = [
"serde-str",
"serde-with-arbitrary-precision",
] }
tokio = { version = "1.26.0", features = ["full"] }
futures = "0.3.27"

dashmap = { version = "5.4.0", features = ["serde"] }
ctrlc = "3.2.5"
serde = { version = "1.0", features = ["derive"] }
ctrlc = "3.4.2"
serde = { version = "1.0.196", features = ["derive"] }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
once_cell = "1.19.0"
anyhow = "1.0.79"
serde_json = "1.0.113"
strum = { version = "0.26.1", features = ["derive"] }
dotenvy = "0.15.7"
ts-rs = "6.2.1"
uuid7 = { version = "0.7.2" }
log = "0.4.20"

futures = "0.3.30"
axum = { version = "0.6.12", features = ["ws", "macros"] }
tower = { version = "0.4", features = [
"util",
"timeout",
"load-shed",
"limit",
] }
tower-http = { version = "0.4.3", features = ["cors", "trace"] }
async-trait = "0.1.68"
once_cell = "1.18.0"
hyper = { version = "0.14.14", features = ["stream"] }
tokio-stream = "0.1.11"
async-channel = "1.8.0"
tokio-tungstenite = "0.17.0"
anyhow = "1.0.66"
prost-types = "0.11.2"
serde_json = "1.0"
strum = { version = "0.26.1", features = ["derive"] }
lazy_static = "1.4.0"
dotenvy = "0.15.6"
rand = "0.8.5"
ts-rs = "6.2.1"
garde = "0.11.2"
axum_garde = "0.11.2"
uuid7 = { version = "0.3.3" }
reqwest = "0.11.18"
log = "0.4.19"
axum = { version = "0.6.12", features = ["ws", "macros"] }
axum-server = { version = "0.5", features = ["tls-rustls"] }
axum-macros = "0.3.7"
reqwest = "0.11.24"
tokio = { version = "1.26.0", features = ["full"] }
async-trait = "0.1.77"
2 changes: 0 additions & 2 deletions server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ log = { workspace = true }
tower = { workspace = true }
hyper = { wokrspace = true }
axum = { workspace = true }
axum-server = { workspace = true }
axum-macros = { workspace = true }
tower-http = { workspace = true }
tracing-subscriber = { workspace = true }
async-trait = { workspace = true }
Expand Down
6 changes: 4 additions & 2 deletions server/src/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ use crate::structs::{
};
use anyhow::Result;
use async_trait::async_trait;
use axum::extract::ws::{Message, WebSocket};
use axum_macros::FromRef;
use axum::extract::{
ws::{Message, WebSocket},
FromRef,
};
use dashmap::{DashMap, DashSet};
use futures::{stream::SplitSink, SinkExt};
use log::info;
Expand Down

0 comments on commit 80f5d9c

Please sign in to comment.