upgrading and updating my repo

This commit is contained in:
filipriec
2025-04-19 18:36:26 +02:00
parent 60ba17cfea
commit ee687fafbe
4 changed files with 241 additions and 190 deletions

415
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -15,9 +15,9 @@ dotenvy = "0.15.7"
lazy_static = "1.5.0" lazy_static = "1.5.0"
prost = "0.13.5" prost = "0.13.5"
ratatui = "0.29.0" ratatui = "0.29.0"
serde = { version = "1.0.218", features = ["derive"] } serde = { version = "1.0.219", features = ["derive"] }
time = "0.3.41" time = "0.3.41"
tokio = { version = "1.43.0", features = ["full", "macros"] } tokio = { version = "1.44.2", features = ["full", "macros"] }
toml = "0.8.20" toml = "0.8.20"
tonic = "0.12.3" tonic = "0.12.3"
tracing = "0.1.41" tracing = "0.1.41"

View File

@@ -7,7 +7,7 @@ license.workspace = true
[dependencies] [dependencies]
tonic = "0.12.3" tonic = "0.12.3"
prost = "0.13.5" prost = "0.13.5"
serde = { version = "1.0.218", features = ["derive"] } serde = { version = "1.0.219", features = ["derive"] }
[build-dependencies] [build-dependencies]
tonic-build = "0.12.3" tonic-build = "0.12.3"

View File

@@ -10,14 +10,14 @@ common = { path = "../common" }
chrono = { version = "0.4.40", features = ["serde"] } chrono = { version = "0.4.40", features = ["serde"] }
dotenvy = "0.15.7" dotenvy = "0.15.7"
prost = "0.13.5" prost = "0.13.5"
serde = { version = "1.0.218", features = ["derive"] } serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140" serde_json = "1.0.140"
sqlx = { version = "0.8.3", features = ["chrono", "postgres", "runtime-tokio", "runtime-tokio-native-tls", "time", "uuid"] } sqlx = { version = "0.8.5", features = ["chrono", "postgres", "runtime-tokio", "runtime-tokio-native-tls", "time", "uuid"] }
tokio = { version = "1.43.0", features = ["full", "macros"] } tokio = { version = "1.44.2", features = ["full", "macros"] }
tonic = "0.12.3" tonic = "0.12.3"
tonic-reflection = "0.12.3" tonic-reflection = "0.12.3"
tracing = "0.1.41" tracing = "0.1.41"
time = { version = "0.3.39", features = ["local-offset"] } time = { version = "0.3.41", features = ["local-offset"] }
steel-derive = { git = "https://github.com/mattwparas/steel.git", branch = "master", package = "steel-derive" } steel-derive = { git = "https://github.com/mattwparas/steel.git", branch = "master", package = "steel-derive" }
steel-core = { git = "https://github.com/mattwparas/steel.git", version = "0.6.0", features = ["anyhow", "dylibs", "sync"] } steel-core = { git = "https://github.com/mattwparas/steel.git", version = "0.6.0", features = ["anyhow", "dylibs", "sync"] }
thiserror = "2.0.12" thiserror = "2.0.12"
@@ -34,6 +34,6 @@ name = "server"
path = "src/lib.rs" path = "src/lib.rs"
[dev-dependencies] [dev-dependencies]
tokio = { version = "1.43", features = ["full", "test-util"] } tokio = { version = "1.44", features = ["full", "test-util"] }
rstest = "0.24.0" rstest = "0.24.0"
lazy_static = "1.5.0" lazy_static = "1.5.0"