Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade deps #100

Merged
merged 2 commits into from
Nov 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,317 changes: 748 additions & 569 deletions Cargo.lock

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,22 @@ publish = false
license-file = "LICENSE"

[workspace.dependencies]
const_format = "0.2.32"
const_format = "0.2.33"
entity = { path = "./entity" }
macros = { path = "./macros" }
sea-orm = { version = "0.12.7", default-features = false, features = ["runtime-tokio-rustls", "sqlx-postgres", "with-uuid", "with-chrono"] }
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
tokio = { version = "1.33.0", features = ["rt-multi-thread", "parking_lot", "macros"] }
uuid = { version = "1.5.0", features = ["v4", "fast-rng", "serde"] }
sea-orm = { version = "1.1.1", default-features = false, features = ["runtime-tokio-rustls", "sqlx-postgres", "with-uuid", "with-chrono"] }
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
tokio = { version = "1.41.1", features = ["rt-multi-thread", "parking_lot", "macros"] }
uuid = { version = "1.11.0", features = ["v4", "fast-rng", "serde"] }
libiam = { git = "https://github.com/Verseghy/iam", package = "libiam" }
dotenvy = "0.15.7"
matverseny-backend = { path = "./backend" }
test-utils = { path = "./test-utils" }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
tokio-tungstenite = "0.23.1"
reqwest = { version = "0.12.5", default-features = false, features = ["json", "rustls-tls"] }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
tokio-tungstenite = "0.24.0"
reqwest = { version = "0.12.9", default-features = false, features = ["json", "rustls-tls"] }
futures = "0.3.31"

[workspace.lints.rust]
Expand Down
26 changes: 13 additions & 13 deletions backend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,37 +11,37 @@ default-run = "matverseny-backend"
workspace = true

[dependencies]
axum = { version = "0.7.5", features = ["ws", "http2"] }
axum = { version = "0.7.9", features = ["ws", "http2"] }
serde.workspace = true
tokio = { workspace = true, features = ["macros", "signal", "sync"] }
tower = "0.4.13"
tower-http = { version = "0.5.2", features = ["cors", "compression-full", "decompression-full", "catch-panic", "sensitive-headers", "request-id", "util", "normalize-path"] }
tower = "0.5.1"
tower-http = { version = "0.6.1", features = ["cors", "compression-full", "decompression-full", "catch-panic", "sensitive-headers", "request-id", "util", "normalize-path"] }
tracing.workspace = true
tracing-subscriber.workspace = true
entity.workspace = true
sea-orm.workspace = true
serde_json.workspace = true
validator = { version = "0.18.1", features = ["derive"] }
jsonwebtoken = "9.1.0"
validator = { version = "0.19.0", features = ["derive"] }
jsonwebtoken = "9.3.0"
rand = "0.8.5"
futures.workspace = true
rand_chacha = "0.3.1"
serde_with = "3.4.0"
serde_with = "3.11.0"
tokio-tungstenite.workspace = true
sqlx = { version = "0.7.2", default-features = false, features = ["postgres"] }
sqlx = { version = "0.8.2", default-features = false, features = ["postgres"] }
uuid.workspace = true
bytes = "1.5.0"
bytes = "1.8.0"
mime = "0.3.17"
macros.workspace = true
smallvec = "1.11.1"
smallvec = "1.13.2"
const_format.workspace = true
pin-project-lite = "0.2.13"
pin-project-lite = "0.2.15"
reqwest.workspace = true
libiam.workspace = true
chrono = { version = "0.4.31", features = ["serde"] }
async-nats = "0.35.1"
chrono = { version = "0.4.38", features = ["serde"] }
async-nats = "0.37.0"
headers = "0.4.0"
anyhow = "1.0.86"
anyhow = "1.0.93"

[dev-dependencies]
test-utils.workspace = true
4 changes: 2 additions & 2 deletions cmds/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ workspace = true
tokio = { workspace = true, features = ["rt", "macros"] }
libiam.workspace = true
dotenvy.workspace = true
kube = "0.92.1"
k8s-openapi = { version = "0.22.0", features = ["earliest"] }
kube = "0.96.0"
k8s-openapi = { version = "0.23.0", features = ["earliest"] }

[[bin]]
name = "create_iam_app"
Expand Down
1 change: 1 addition & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ allow = [
"BSD-2-Clause",
"Zlib",
"CC0-1.0",
"Unicode-3.0",
]
exceptions = [
{ allow = ["OpenSSL"], name = "ring" },
Expand Down
2 changes: 1 addition & 1 deletion entity/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ workspace = true
[dependencies]
sea-orm = { workspace = true, features = ["macros"] }
serde.workspace = true
serde_repr = "0.1.17"
serde_repr = "0.1.19"
uuid.workspace = true
6 changes: 3 additions & 3 deletions macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ proc-macro = true
workspace = true

[dependencies]
proc-macro2 = "1.0.70"
quote = "1.0.33"
syn = { version = "2.0.39", features = ["parsing"] }
proc-macro2 = "1.0.89"
quote = "1.0.37"
syn = { version = "2.0.87", features = ["parsing"] }
2 changes: 1 addition & 1 deletion migration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ workspace = true

[dependencies]
tokio.workspace = true
sea-orm-migration = { version = "0.12.6", default-features = false, features = ["sqlx-postgres", "runtime-tokio-rustls", "cli"] }
sea-orm-migration = { version = "1.1.1", default-features = false, features = ["sqlx-postgres", "runtime-tokio-rustls", "cli"] }
entity.workspace = true
const_format.workspace = true
2 changes: 1 addition & 1 deletion test-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ reqwest.workspace = true
sea-orm.workspace = true
serde.workspace = true
serde_json.workspace = true
serial_test = "2.0.0"
serial_test = "3.2.0"
tokio.workspace = true
tokio-tungstenite.workspace = true
tracing.workspace = true
Expand Down
Loading