Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
layout: default
title: Sophia - A Rust HTTP Client
title: Sophia - The elegant full-stack web framework
nav_order: 1
description: "A straightforward, non-opinionated, developer-centric HTTP client library for Rust"
description: "🌟 The elegant full-stack web framework that makes Rust web development effortless"
permalink: /
---
<div align="center">
Expand Down
3 changes: 3 additions & 0 deletions rustfmt.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
max_width = 100
chain_width = 20
use_small_heuristics = "Max"
4 changes: 3 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ impl Sophia {

let mut server = Vetis::new(config);

let result = server.run(handler).await;
let result = server
.run(handler)
.await;

if let Err(e) = result {
error!("Failed to start server: {}", e);
Expand Down