Skip to content

Commit

Permalink
Run cargo upgrade to update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
spencewenski committed May 13, 2024
1 parent 465185e commit fd0ebb9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ axum-extra = { version = "0.9.3", features = ["typed-header"] }
tower = "0.4.13"
tower-http = { version = "0.5.2", features = ["trace", "timeout", "request-id", "util", "normalize-path", "sensitive-headers", "catch-panic", "compression-full", "decompression-full", "limit"] }
aide = { version = "0.13.4", features = ["axum", "redoc", "scalar", "macros"], optional = true }
schemars = { version = "0.8.17", optional = true }
schemars = { version = "0.8.19", optional = true }

# DB
sea-orm = { version = "1.0.0-rc.4", features = ["debug-print", "runtime-tokio-rustls", "sqlx-postgres", "macros"], optional = true }
Expand All @@ -68,14 +68,14 @@ jsonwebtoken = { version = "9.3.0", optional = true }
clap = { version = "4.5.4", features = ["derive", "string"], optional = true }

# Others
anyhow = "1.0.82"
serde = "1.0.200"
serde_derive = "1.0.200"
anyhow = "1.0.83"
serde = "1.0.201"
serde_derive = "1.0.201"
serde_with = { version = "3.8.1", features = ["macros", "chrono_0_4"] }
strum = "0.26.2"
strum_macros = "0.26.2"
itertools = "0.12.1"
serde_json = "1.0.116"
serde_json = "1.0.117"
toml = "0.8.12"
url = { version = "2.5.0", features = ["serde"] }
uuid = { version = "1.8.0", features = ["v4", "serde"] }
Expand Down
6 changes: 3 additions & 3 deletions examples/minimal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ publish = false
[dependencies]
roadster = { version = "0.1", path = "../.." }
tokio = { version = "1.37.0", features = ["full", "macros"] }
anyhow = "1.0.82"
anyhow = "1.0.83"
tracing = { version = "0.1.40", features = ["async-await"] }
async-trait = "0.1.80"
aide = { version = "0.13.4", features = ["axum"] }
axum = "0.7.5"
schemars = "0.8.17"
schemars = "0.8.19"

# DB
entity = { path = "entity" }
Expand All @@ -23,7 +23,7 @@ clap = { version = "4.5.4", features = ["derive"] }

# The default `rss-stats` feature has a dependency that currently can't be satisfied (memchr: ~2.3)
rusty-sidekiq = { version = "0.10.5", default-features = false }
serde = { version = "1.0.200", features = ["derive"] }
serde = { version = "1.0.201", features = ["derive"] }

[dev-dependencies]
cargo-husky = { version = "1.5.0", features = ["default", "run-cargo-check", "run-cargo-clippy", "run-cargo-fmt", "run-cargo-test"] }
Expand Down

0 comments on commit fd0ebb9

Please sign in to comment.