Compare commits
2 commits
d42b80d7e1
...
e95afd3e32
Author | SHA1 | Date | |
---|---|---|---|
e95afd3e32 | |||
fbcf9566c1 |
3 changed files with 11 additions and 5 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -1241,7 +1241,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "mangadex-home"
|
name = "mangadex-home"
|
||||||
version = "0.5.2"
|
version = "0.5.3"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"actix-web",
|
"actix-web",
|
||||||
"arc-swap",
|
"arc-swap",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "mangadex-home"
|
name = "mangadex-home"
|
||||||
version = "0.5.2"
|
version = "0.5.3"
|
||||||
license = "GPL-3.0-or-later"
|
license = "GPL-3.0-or-later"
|
||||||
authors = ["Edward Shen <code@eddie.sh>"]
|
authors = ["Edward Shen <code@eddie.sh>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
12
README.md
12
README.md
|
@ -2,9 +2,15 @@ A Rust implementation of a MangaDex@Home client.
|
||||||
|
|
||||||
This client contains the following features:
|
This client contains the following features:
|
||||||
|
|
||||||
- Multi-threaded
|
- Easy migration from the official client
|
||||||
- HTTP/2 support
|
- Fully compliant with MangaDex@Home specifications
|
||||||
- No support for TLS 1.1 or 1.0
|
- Multi-threaded, high performance, and low overhead client
|
||||||
|
- HTTP/2 support for API users, HTTP/2 only for upstream connections
|
||||||
|
- Secure and privacy oriented features:
|
||||||
|
- Only supports TLS 1.2 or newer; HTTP is not enabled by default
|
||||||
|
- Options for no logging and no metrics
|
||||||
|
- Support for on-disk XChaCha20 encryption with ephemeral key generation
|
||||||
|
- Supports an internal LFU, LRU, or a redis instance for in-memory caching
|
||||||
|
|
||||||
## Building
|
## Building
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue