pict-rs/Cargo.toml

48 lines
1.4 KiB
TOML
Raw Normal View History

[package]
name = "pict-rs"
2020-06-07 02:01:04 +00:00
description = "A simple image hosting service"
2021-01-18 23:16:52 +00:00
version = "0.3.0-alpha.5"
authors = ["asonix <asonix@asonix.dog>"]
2020-06-07 02:01:04 +00:00
license = "AGPL-3.0"
readme = "README.md"
repository = "https://git.asonix.dog/asonix/pict-rs"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2020-09-14 15:52:18 +00:00
actix-form-data = "0.5.0"
actix-rt = "1.1.1"
2020-09-14 15:52:18 +00:00
actix-web = { version = "3.0.1", default-features = false, features = ["rustls"] }
anyhow = "1.0"
async-fs = "1.5.0"
async-stream = "0.3.0"
2020-10-10 23:22:00 +00:00
base64 = "0.13.0"
bytes = "0.5"
futures = "0.3.4"
futures-lite = "1.11.3"
magick_rust = { version = "0.14.0", git = "https://github.com/nlfiedler/magick-rust" }
mime = "0.3.1"
2020-06-14 15:07:31 +00:00
once_cell = "1.4.0"
rand = "0.7.3"
2020-10-10 23:22:00 +00:00
rexiv2 = "0.9.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
2020-06-11 00:34:25 +00:00
sha2 = "0.9.0"
2020-09-10 16:12:42 +00:00
sled = { version = "0.34.4" }
2020-06-07 00:54:06 +00:00
structopt = "0.3.14"
thiserror = "1.0"
time = { version = "0.2.23", features = ["serde"] }
tracing = "0.1.15"
tracing-futures = "0.2.4"
tracing-subscriber = { version = "0.2.5", features = ["fmt", "tracing-log"] }
2020-06-14 18:56:42 +00:00
uuid = { version = "0.8", features = ["v4"] }
2020-06-24 16:58:46 +00:00
[dependencies.ffmpeg-next]
2020-10-10 23:22:00 +00:00
version = "4.3.7"
2020-06-24 16:58:46 +00:00
default-features = false
2020-10-11 01:27:57 +00:00
features = ["codec", "filter", "device", "format", "resampling", "postprocessing", "software-resampling", "software-scaling"]
2020-06-24 19:20:40 +00:00
[dependencies.ffmpeg-sys-next]
2020-10-10 23:22:00 +00:00
version = "4.3.5"