2020-06-06 21:02:26 +00:00
|
|
|
[package]
|
|
|
|
name = "pict-rs"
|
2020-06-07 02:01:04 +00:00
|
|
|
description = "A simple image hosting service"
|
2020-06-15 02:42:42 +00:00
|
|
|
version = "0.1.10"
|
2020-06-06 21:02:26 +00:00
|
|
|
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"
|
2020-06-06 21:02:26 +00:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
actix-form-data = { git = "https://git.asonix.dog/Aardwolf/actix-form-data" }
|
|
|
|
actix-fs = { git = "https://git.asonix.dog/asonix/actix-fs" }
|
|
|
|
actix-rt = "1.1.1"
|
2020-06-07 15:59:58 +00:00
|
|
|
actix-web = { version = "3.0.0-alpha.2", features = ["rustls"] }
|
2020-06-06 21:02:26 +00:00
|
|
|
anyhow = "1.0"
|
2020-06-14 15:07:31 +00:00
|
|
|
base64 = "0.12.1"
|
2020-06-06 21:02:26 +00:00
|
|
|
bytes = "0.5"
|
|
|
|
futures = "0.3.4"
|
2020-06-11 16:46:00 +00:00
|
|
|
gif = "0.10.3"
|
2020-06-06 21:02:26 +00:00
|
|
|
image = "0.23.4"
|
|
|
|
mime = "0.3.1"
|
2020-06-14 15:07:31 +00:00
|
|
|
once_cell = "1.4.0"
|
2020-06-06 21:02:26 +00:00
|
|
|
rand = "0.7.3"
|
2020-06-15 02:41:45 +00:00
|
|
|
rexiv2 = "0.9.0"
|
2020-06-07 15:59:58 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2020-06-06 21:02:26 +00:00
|
|
|
serde_json = "1.0"
|
2020-06-11 00:34:25 +00:00
|
|
|
sha2 = "0.9.0"
|
2020-06-06 21:02:26 +00:00
|
|
|
sled = "0.32.0-rc1"
|
2020-06-07 00:54:06 +00:00
|
|
|
structopt = "0.3.14"
|
2020-06-06 21:02:26 +00:00
|
|
|
thiserror = "1.0"
|
2020-06-14 02:28:06 +00:00
|
|
|
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"] }
|