fix workspaces and Cargo dependencies

This commit is contained in:
Marcel Märtens 2020-05-27 18:20:16 +02:00
parent 9354952a7f
commit 8f65168506
2 changed files with 346 additions and 310 deletions

652
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -79,7 +79,7 @@ pub struct Server {
thread_pool: ThreadPool, thread_pool: ThreadPool,
server_info: ServerInfo, server_info: ServerInfo,
metrics: ServerMetrics, _metrics: ServerMetrics,
tick_metrics: TickMetrics, tick_metrics: TickMetrics,
server_settings: ServerSettings, server_settings: ServerSettings,
@ -242,7 +242,7 @@ impl Server {
git_date: common::util::GIT_DATE.to_string(), git_date: common::util::GIT_DATE.to_string(),
auth_provider: settings.auth_server_address.clone(), auth_provider: settings.auth_server_address.clone(),
}, },
metrics, _metrics: metrics,
tick_metrics, tick_metrics,
server_settings: settings.clone(), server_settings: settings.clone(),
}; };