Skip to content

Commit d6032f0

Browse files
committed
style(benchmarks-website): cargo +nightly fmt
`cargo +nightly fmt` re-orders the use statements in `api/mod.rs` so the public re-exports are interleaved with the crate-private ones in alphabetical order across visibility modifiers, which is what nightly rustfmt's StdExternalCrate group_imports configuration produces. Signed-off-by: Claude <noreply@anthropic.com>
1 parent ed0a853 commit d6032f0

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • benchmarks-website/server/src/api

benchmarks-website/server/src/api/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ use axum::extract::State;
3232
use axum::response::IntoResponse;
3333
use duckdb::Connection;
3434

35+
pub(crate) use self::charts::chart_payload;
36+
pub(crate) use self::charts::collect_group_charts;
3537
pub use self::dto::ChartLink;
3638
pub use self::dto::ChartResponse;
3739
pub use self::dto::CommitPoint;
@@ -50,11 +52,9 @@ pub use self::dto::SeriesTag;
5052
pub use self::dto::Summary;
5153
pub use self::dto::group_sort_key;
5254
pub use self::filter::collect_filter_universe;
55+
pub(crate) use self::groups::collect_groups;
5356
pub use self::window::ChartQuery;
5457
pub use self::window::CommitWindow;
55-
pub(crate) use self::charts::chart_payload;
56-
pub(crate) use self::charts::collect_group_charts;
57-
pub(crate) use self::groups::collect_groups;
5858
use crate::app::AppState;
5959
use crate::db;
6060
use crate::error::ApiError;

0 commit comments

Comments
 (0)