Skip to content

Commit

Permalink
Bump deps, fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
nyurik committed Jul 30, 2024
1 parent ecc4bac commit fb3e439
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 49 deletions.
89 changes: 47 additions & 42 deletions Cargo.lock

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

14 changes: 7 additions & 7 deletions martin/src/srv/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,6 @@ use std::pin::Pin;
use std::string::ToString;
use std::time::Duration;

use crate::config::ServerState;
use crate::source::TileCatalog;
use crate::srv::config::{SrvConfig, KEEP_ALIVE_DEFAULT, LISTEN_ADDRESSES_DEFAULT};
use crate::srv::tiles::get_tile;
use crate::srv::tiles_info::get_source_info;
use crate::MartinError::BindingError;
use crate::MartinResult;
use actix_cors::Cors;
use actix_web::error::ErrorInternalServerError;
use actix_web::http::header::CACHE_CONTROL;
Expand All @@ -24,6 +17,13 @@ use serde::{Deserialize, Serialize};

#[cfg(feature = "webui")]
use crate::args::WebUiMode;
use crate::config::ServerState;
use crate::source::TileCatalog;
use crate::srv::config::{SrvConfig, KEEP_ALIVE_DEFAULT, LISTEN_ADDRESSES_DEFAULT};
use crate::srv::tiles::get_tile;
use crate::srv::tiles_info::get_source_info;
use crate::MartinError::BindingError;
use crate::MartinResult;

#[cfg(feature = "webui")]
mod webui {
Expand Down

0 comments on commit fb3e439

Please sign in to comment.