lust/Cargo.toml

58 lines
1.5 KiB
TOML
Raw Permalink Normal View History

2021-05-28 17:39:12 +00:00
[package]
name = "lust"
2022-03-26 20:27:32 +00:00
version = "2.0.0"
2022-03-30 21:59:44 +00:00
authors = ["Harrison Burt <hburt2003@gmail.com>"]
2022-03-26 20:27:32 +00:00
edition = "2021"
2021-06-05 14:49:47 +00:00
documentation = "getting-started.md"
readme = "README.md"
license = "MIT"
keywords = ["image", "image-server"]
include = ["src/**/*", "Cargo.toml"]
2021-06-05 14:57:21 +00:00
description = "A fast, auto-optimising image server designed for multiple backends with throughput and latency in mind."
2021-05-28 17:39:12 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2021-06-18 15:01:12 +00:00
webp = { version = "*", path = "./webp" }
2021-05-28 17:39:12 +00:00
2022-03-26 21:23:16 +00:00
tokio = { version = "1", features = ["full"] }
2022-03-26 23:31:04 +00:00
poem-openapi = { version = "1.3", features = ["redoc", "uuid", "url"] }
2022-03-26 21:23:16 +00:00
poem = { version = "1.2", features = ["anyhow"] }
serde = { version = "1", features = ["derive"] }
2022-03-27 00:24:07 +00:00
uuid = { version = "0.8.2", features = ["serde", "v4"] }
2022-03-26 21:23:16 +00:00
mimalloc = { version = "*", default-features = false }
clap = { version = "3", features = ["derive", "env"] }
2022-03-26 23:31:04 +00:00
strum = { version = "0.24", features = ["derive"] }
2022-03-26 21:23:16 +00:00
2022-03-29 20:52:25 +00:00
# Blob storage deps
rusoto_core = "0.47.0"
rusoto_s3 = "0.47.0"
2022-03-30 20:16:59 +00:00
scylla = "0.4.3"
2022-03-29 20:52:25 +00:00
2022-03-30 19:46:09 +00:00
moka = "0.8.0"
rayon = "1.5.1"
2022-03-26 21:23:16 +00:00
crc32fast = "1.3.2"
2022-03-26 23:31:04 +00:00
enum_dispatch = "0.3.8"
hashbrown = "0.12.0"
2022-03-26 21:23:16 +00:00
crossbeam = "0.8.1"
tracing = "0.1.30"
tracing-futures = "0.2.5"
tracing-subscriber = "0.3.8"
2022-03-28 18:24:53 +00:00
image = "0.24"
2021-05-28 17:39:12 +00:00
base64 = "0.13.0"
bytes = "1"
anyhow = "1"
2022-03-26 21:23:16 +00:00
serde_yaml = "0.8.23"
2021-05-28 17:39:12 +00:00
serde_json = "1"
2022-03-26 20:27:32 +00:00
async-trait = "0.1"
once_cell = "1.10.0"
futures = "0.3"
2022-03-26 23:31:04 +00:00
mime = "0.3.16"
2021-05-28 17:39:12 +00:00
2022-03-27 18:13:50 +00:00
[dev-dependencies]
poem = { version = "1.2", features = ["anyhow", "test"] }
2022-03-27 21:34:16 +00:00
# [profile.release]
# lto = "fat"
# codegen-units = 1