Skip to content

Commit

Permalink
chore: tabula rasa
Browse files Browse the repository at this point in the history
  • Loading branch information
0xAlcibiades committed Sep 10, 2024
1 parent 6d93b42 commit b3e4255
Show file tree
Hide file tree
Showing 34 changed files with 5 additions and 4,579 deletions.
73 changes: 4 additions & 69 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,79 +1,14 @@
[package]
authors = ["Programatik <programatik29@gmail.com>", "Megsdevs <megsdevs@outlook.com", "0xAlcibiades <alcibiades.eth@protonmail.com>"]
authors = ["0xAlcibiades <alcibiades.eth@protonmail.com>"]
categories = ["asynchronous", "network-programming", "web-programming"]
description = "High level server for hyper and tower."
edition = "2021"
homepage = "https://github.com/valorem-labs-inc/hyper-server"
homepage = "https://github.com/warlock-labls/hyper-server"
keywords = ["axum", "tonic", "hyper", "tower", "server"]
license = "MIT"
name = "hyper-server"
readme = "README.md"
repository = "https://github.com/valorem-labs-inc/hyper-server"
version = "0.5.3"
version = "1.0.0"

[features]
default = []
tls-rustls = ["arc-swap", "pin-project-lite", "rustls", "rustls-pemfile", "tokio/fs", "tokio/time", "tokio-rustls"]
tls-openssl = ["openssl", "tokio-openssl", "pin-project-lite"]
proxy-protocol = ["ppp", "pin-project-lite"]

[dependencies]

# optional dependencies
## rustls
arc-swap = { version = "1", optional = true }
bytes = "1"
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
http = "0.2"
http-body = "0.4"
hyper = { version = "0.14.27", features = ["http1", "http2", "server", "runtime"] }

## openssl
openssl = { version = "0.10", optional = true }
pin-project-lite = { version = "0.2", optional = true }
rustls = { version = "0.21", features = ["dangerous_configuration"], optional = true }
rustls-pemfile = { version = "1", optional = true }
tokio = { version = "1", features = ["macros", "net", "sync"] }
tokio-openssl = { version = "0.6", optional = true }
tokio-rustls = { version = "0.24", optional = true }
tower-service = "0.3"

## proxy-protocol
ppp = { version = "2.2.0", optional = true }

[dev-dependencies]
axum = "0.6"
hyper = { version = "0.14", features = ["full"] }
tokio = { version = "1", features = ["full"] }
tower = { version = "0.4", features = ["util"] }
tower-http = { version = "0.4.4", features = ["add-extension"] }

[package.metadata.docs.rs]
all-features = true
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
rustdoc-args = ["--cfg", "docsrs"]

[[example]]
name = "from_std_listener_rustls"
required-features = ["tls-rustls"]
doc-scrape-examples = true

[[example]]
name = "http_and_https"
required-features = ["tls-rustls"]
doc-scrape-examples = true

[[example]]
name = "rustls_reload"
required-features = ["tls-rustls"]
doc-scrape-examples = true

[[example]]
name = "rustls_server"
required-features = ["tls-rustls"]
doc-scrape-examples = true

[[example]]
name = "rustls_session"
required-features = ["tls-rustls"]
doc-scrape-examples = true
[dependencies]
68 changes: 1 addition & 67 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,67 +1 @@
[![License](https://img.shields.io/crates/l/hyper-server)](https://choosealicense.com/licenses/mit/)
[![Crates.io](https://img.shields.io/crates/v/hyper-server)](https://crates.io/crates/hyper-server)
[![Docs](https://img.shields.io/crates/v/hyper-server?color=blue&label=docs)](https://docs.rs/hyper-server/)
![CI](https://github.com/valorem-labs-inc/hyper-server/actions/workflows/CI.yml/badge.svg)
[![codecov](https://codecov.io/gh/valorem-labs-inc/hyper-server/branch/master/graph/badge.svg?token=8W5MEJQSW6)](https://codecov.io/gh/valorem-labs-inc/hyper-server)

# hyper-server

hyper-server is a high performance [hyper] server implementation designed to
work with [axum], [tonic] and [tower].

## Features

- HTTP/1 and HTTP/2
- HTTPS through [rustls] and openssl.
- High performance through [hyper].
- Using [tower] make service API.
- Exceptional [axum] compatibility. Likely to work with future [axum] releases.
- Superb [tonic] compatibility. Likely to work with future [tonic] releases.

## Usage Example

A simple hello world application can be served like:

```rust
use axum::{routing::get, Router};
use std::net::SocketAddr;

#[tokio::main]
async fn main() {
let app = Router::new().route("/", get(|| async { "Hello, world!" }));

let addr = SocketAddr::from(([127, 0, 0, 1], 3000));
println!("listening on {}", addr);
hyper_server::bind(addr)
.serve(app.into_make_service())
.await
.unwrap();
}
```

You can find more examples [here](/examples).

## Minimum Supported Rust Version

hyper-server's MSRV is `1.65`.

## Safety

This crate uses `#![forbid(unsafe_code)]` to ensure everything is implemented in 100% safe Rust.

## License

This project is licensed under the [MIT license](LICENSE).

## Why fork

This project is based on the great work in [axum-server], which is no longer actively maintained.
The rationale for forking is that we use this for critical infrastructure and want to be able to
extend the crate and fix bugs as needed.

[axum-server]: https://github.com/programatik29/axum-server
[axum]: https://crates.io/crates/axum
[hyper]: https://crates.io/crates/hyper
[rustls]: https://crates.io/crates/rustls
[tower]: https://crates.io/crates/tower
[tonic]: https://crates.io/crates/tonic
# hyper-server
29 changes: 0 additions & 29 deletions examples/configure_addr_incoming.rs

This file was deleted.

26 changes: 0 additions & 26 deletions examples/configure_http.rs

This file was deleted.

19 changes: 0 additions & 19 deletions examples/from_std_listener.rs

This file was deleted.

28 changes: 0 additions & 28 deletions examples/from_std_listener_rustls.rs

This file was deleted.

50 changes: 0 additions & 50 deletions examples/graceful_shutdown.rs

This file was deleted.

18 changes: 0 additions & 18 deletions examples/hello_world.rs

This file was deleted.

52 changes: 0 additions & 52 deletions examples/http_and_https.rs

This file was deleted.

Loading

0 comments on commit b3e4255

Please sign in to comment.