Skip to content

Commit df2e1ec

Browse files
chore: update deps
Signed-off-by: Henry Gressmann <[email protected]>
1 parent 301f5f9 commit df2e1ec

File tree

3 files changed

+20
-7
lines changed

3 files changed

+20
-7
lines changed

Cargo.lock

Lines changed: 15 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ path="src/main.rs"
1616

1717
[dependencies]
1818
# async/concurrency
19-
tokio={version="1.44", default-features=false, features=["macros", "rt-multi-thread", "signal"]}
19+
tokio={version="1.46", default-features=false, features=["macros", "rt-multi-thread", "signal"]}
2020
tokio-util={version="0.7", features=["io"]}
2121
futures-lite={version="2.6", default-features=false, features=["alloc"]}
2222
crossbeam-utils="0.8"

tests/dashboard.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ async fn test_dashboard() -> Result<()> {
1313
app.seed_database(100)?;
1414

1515
let project_id = "public-project";
16-
let api_prefix = format!("/api/dashboard/project/{}", project_id);
17-
let stats_path = format!("{}/stats", api_prefix);
18-
let graph_path = format!("{}/graph", api_prefix);
19-
let dimension_path = format!("{}/dimension", api_prefix);
16+
let api_prefix = format!("/api/dashboard/project/{project_id}");
17+
let stats_path = format!("{api_prefix}/stats");
18+
let graph_path = format!("{api_prefix}/graph");
19+
let dimension_path = format!("{api_prefix}/dimension");
2020

2121
let start_date = (Utc::now() - Duration::days(365)).to_rfc3339();
2222
let end_date = Utc::now().to_rfc3339();

0 commit comments

Comments
 (0)