nyazoom/Cargo.toml

62 lines
1.7 KiB
TOML
Raw Normal View History

2023-04-07 02:28:23 -07:00
[package]
name = "nyazoom"
2025-01-12 14:43:26 -08:00
version = "0.2.0"
2023-04-07 02:28:23 -07:00
edition = "2021"
2025-01-12 14:37:33 -08:00
authors = ["Zynh Ludwig <Zynh0722@gmail.com>"]
readme = "README.md"
homepage = "https://nyazoom.zynh.me"
repository = "https://git.zynh.me/Zynh0722/nyazoom"
description = "file sharing but with cats"
2023-04-07 02:28:23 -07:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2023-07-31 06:32:17 -07:00
2023-04-07 02:28:23 -07:00
[dependencies]
2023-04-12 04:59:43 -07:00
async-bincode = { version = "0.7.0", features = ["tokio"] }
2024-08-28 17:53:13 -07:00
async-trait = "0.1.81"
2024-08-29 22:42:05 -07:00
async_zip = { version = "0.0.17", features = [
2024-08-28 17:53:13 -07:00
"deflate",
"tokio",
"tokio-fs",
"async-compression",
] }
http-body-util = "0.1.2"
axum = { version = "0.7.5", features = [
"multipart",
"http2",
"macros",
"original-uri",
] }
axum-extra = { version = "0.9.0", features = ["typed-header"] }
2023-04-12 01:29:10 -07:00
bincode = "1.3.3"
2023-04-12 04:59:43 -07:00
chrono = { version = "0.4.24", features = ["serde"] }
2023-04-08 08:12:14 -07:00
futures = "0.3.28"
2024-08-28 17:53:13 -07:00
headers = "0.4.0"
2023-04-08 08:12:14 -07:00
rand = { version = "0.8.5", features = ["small_rng"] }
2024-08-28 17:53:13 -07:00
reqwest = { version = "0.12.7", features = ["json", "native-tls", "blocking"] }
2023-04-11 03:29:21 -07:00
sanitize-filename-reader-friendly = "2.2.1"
2023-04-12 04:59:43 -07:00
serde = { version = "1.0.160", features = ["serde_derive", "derive"] }
2023-04-12 01:29:10 -07:00
serde_derive = "1.0.160"
2023-04-07 06:59:26 -07:00
tokio = { version = "1.27.0", features = ["full"] }
2023-04-08 08:12:14 -07:00
tokio-util = { version = "0.7.7", features = ["io"] }
2024-08-28 17:53:13 -07:00
tower = { version = "0.5.0", features = ["util"] }
tower-http = { version = "0.5.0", features = ["fs", "trace", "limit"] }
2023-04-07 06:59:26 -07:00
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
# I want to use askama's block feature, this requires unreleased 0.13
2024-11-15 18:02:19 -08:00
[dependencies.sqlx]
version = "0.8.2"
features = ["runtime-tokio", "chrono", "sqlite"]
[profile.dev.package.sqlx-macros]
opt-level = 3
2024-11-20 07:29:59 -08:00
[dependencies.rinja]
version = "0.3.5"
2024-11-14 07:34:37 -08:00
features = ["with-axum"]
2024-11-20 07:29:59 -08:00
[dependencies.rinja_axum]
version = "0.3.5"