mangadex-home-rs/Cargo.toml

70 lines
1.9 KiB
TOML
Raw Permalink Normal View History

2021-03-18 01:45:16 +00:00
[package]
2021-03-22 23:51:25 +00:00
name = "mangadex-home"
2022-01-02 20:48:03 +00:00
version = "0.5.4"
2021-04-18 02:12:02 +00:00
license = "GPL-3.0-or-later"
2021-03-18 01:45:16 +00:00
authors = ["Edward Shen <code@eddie.sh>"]
edition = "2018"
2021-07-15 06:45:05 +00:00
include = [
"src/**/*",
"db_queries",
"LICENSE",
"README.md",
"sqlx-data.json",
"settings.sample.yaml"
]
2021-04-18 02:12:02 +00:00
description = "A MangaDex@Home implementation in Rust."
2021-03-22 23:55:15 +00:00
repository = "https://github.com/edward-shen/mangadex-home-rs"
2021-03-18 01:45:16 +00:00
2021-04-24 03:28:47 +00:00
[profile.release]
2021-07-15 23:14:54 +00:00
lto = true
codegen-units = 1
2021-07-14 03:12:29 +00:00
debug = 1
2021-04-24 03:28:47 +00:00
2021-03-18 01:45:16 +00:00
[dependencies]
2022-01-02 20:34:00 +00:00
# Pin because we're using unstable versions
2022-03-26 23:21:27 +00:00
actix-web = { version = "4", features = [ "rustls" ] }
2021-04-24 04:56:58 +00:00
arc-swap = "1"
2021-04-15 02:11:00 +00:00
async-trait = "0.1"
2021-03-18 01:45:16 +00:00
base64 = "0.13"
2021-03-23 02:52:03 +00:00
bincode = "1"
2021-07-17 16:52:02 +00:00
bytes = { version = "1", features = [ "serde" ] }
2021-07-14 00:38:01 +00:00
chacha20 = "0.7"
2021-03-18 01:45:16 +00:00
chrono = { version = "0.4", features = [ "serde" ] }
2022-01-02 20:34:00 +00:00
clap = { version = "3", features = [ "wrap_help", "derive", "cargo" ] }
2021-03-23 02:52:03 +00:00
ctrlc = "3"
2021-03-18 01:45:16 +00:00
dotenv = "0.15"
2021-07-15 06:10:17 +00:00
flate2 = { version = "1", features = [ "tokio" ] }
2021-03-23 02:52:03 +00:00
futures = "0.3"
2021-04-10 01:59:29 +00:00
once_cell = "1"
2021-07-09 21:18:43 +00:00
log = { version = "0.4", features = [ "serde" ] }
2021-04-25 03:56:56 +00:00
lfu_cache = "1"
2022-01-02 20:42:22 +00:00
lru = "0.7"
2021-07-15 06:10:17 +00:00
maxminddb = "0.20"
md-5 = "0.9"
2021-04-18 23:14:36 +00:00
parking_lot = "0.11"
2021-05-23 02:10:03 +00:00
prometheus = { version = "0.12", features = [ "process" ] }
2021-07-17 16:52:02 +00:00
redis = "0.21"
2021-04-18 23:14:36 +00:00
reqwest = { version = "0.11", default_features = false, features = [ "json", "stream", "rustls-tls" ] }
2021-12-02 06:08:40 +00:00
rustls = "0.20"
rustls-pemfile = "0.2"
2021-03-23 02:52:03 +00:00
serde = "1"
serde_json = "1"
2021-05-12 01:01:01 +00:00
serde_repr = "0.1"
2021-06-16 19:31:03 +00:00
serde_yaml = "0.8"
2021-03-23 02:52:03 +00:00
sodiumoxide = "0.2"
2021-07-12 05:34:37 +00:00
sqlx = { version = "0.5", features = [ "runtime-actix-rustls", "sqlite", "time", "chrono", "macros", "offline" ] }
2021-07-15 06:10:17 +00:00
tar = "0.4"
2021-03-23 02:52:03 +00:00
thiserror = "1"
2021-07-15 16:29:55 +00:00
tokio = { version = "1", features = [ "rt-multi-thread", "macros", "fs", "time", "sync", "parking_lot" ] }
2021-04-20 02:01:32 +00:00
tokio-stream = { version = "0.1", features = [ "sync" ] }
2021-04-19 03:06:18 +00:00
tokio-util = { version = "0.6", features = [ "codec" ] }
2021-07-13 03:23:51 +00:00
tracing = "0.1"
tracing-subscriber = { version = "0.2", features = [ "parking_lot" ] }
2021-03-23 02:52:03 +00:00
url = { version = "2", features = [ "serde" ] }
2021-06-06 21:48:48 +00:00
[build-dependencies]
2021-07-10 00:02:22 +00:00
vergen = "5"
2021-07-11 06:33:51 +00:00
[dev-dependencies]
2021-07-17 01:15:47 +00:00
tempfile = "3"