Skip to content

Commit

Permalink
chore(deps): update major deps
Browse files Browse the repository at this point in the history
  • Loading branch information
fiji-flo committed Jan 5, 2025
1 parent edeb8d9 commit b44e294
Show file tree
Hide file tree
Showing 7 changed files with 69 additions and 110 deletions.
146 changes: 48 additions & 98 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ serde_json = { version = "1", features = ["preserve_order"] }
chrono = { version = "0.4", features = ["serde"] }
regex = "1"
url = { version = "2", features = ["serde"] }
itertools = "0.13"
itertools = "0.14"
constcat = "0.5"
anyhow = "1"
indexmap = { version = "2", features = ["serde"] }
Expand Down Expand Up @@ -115,14 +115,14 @@ anyhow.workspace = true
dashmap.workspace = true
schemars.workspace = true

self_update = { version = "0.41", default-features = false, features = [
self_update = { version = "0.42", default-features = false, features = [
"rustls",
"compression-flate2",
"compression-zip-deflate",
] }
clap = { version = "4.5.1", features = ["derive"] }
clap-verbosity-flag = { version = "3", features = ["tracing"] }
tabwriter = "1"
axum = "0.7"
axum = "0.8"
tokio = "1"
dotenvy = "0.15"
2 changes: 1 addition & 1 deletion crates/rari-cli/serve.rs
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ pub fn serve() -> Result<(), anyhow::Error> {
.unwrap()
.block_on(async {
let app = Router::new()
.route("/:locale/search-index.json", get(get_search_index_handler))
.route("/{locale}/search-index.json", get(get_search_index_handler))
.fallback(handler);

let listener = tokio::net::TcpListener::bind("0.0.0.0:8083").await.unwrap();
Expand Down
4 changes: 2 additions & 2 deletions crates/rari-doc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ pest = "2"
pest_derive = "2"
validator = { version = "0.19", features = ["derive"] }
chrono = { version = "0.4", features = ["serde"] }
scraper = { version = "0.21", features = ["deterministic"] }
scraper = { version = "0.22", features = ["deterministic"] }
lol_html = "2"
html-escape = "0.2"
html5ever = "0.29"
ego-tree = "0.9"
ego-tree = "0.10"
rss = { version = "2", features = [], default-features = false }

ignore = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion crates/rari-md/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ rari-types.workspace = true
itertools.workspace = true
base64.workspace = true

comrak = { version = "0.31", default-features = false }
comrak = { version = "0.33", default-features = false }
Loading

0 comments on commit b44e294

Please sign in to comment.