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"
|
2021-08-31 17:15:16 +00:00
|
|
|
version = "0.3.0-alpha.22"
|
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]
|
2021-02-10 22:57:42 +00:00
|
|
|
actix-form-data = "0.6.0-beta.1"
|
|
|
|
actix-fs = { git = "https://git.asonix.dog/asonix/actix-fs", branch = "asonix/actix-rt-2" }
|
2021-06-26 18:10:28 +00:00
|
|
|
actix-rt = "2.2.0"
|
2021-08-26 02:46:11 +00:00
|
|
|
actix-web = { version = "4.0.0-beta.8", default-features = false }
|
2020-06-06 21:02:26 +00:00
|
|
|
anyhow = "1.0"
|
2021-01-18 23:11:32 +00:00
|
|
|
async-stream = "0.3.0"
|
2021-08-26 02:46:11 +00:00
|
|
|
awc = { version = "3.0.0-beta.7", default-features = false }
|
2020-10-10 23:22:00 +00:00
|
|
|
base64 = "0.13.0"
|
2020-06-06 21:02:26 +00:00
|
|
|
futures = "0.3.4"
|
|
|
|
mime = "0.3.1"
|
2021-08-26 02:46:11 +00:00
|
|
|
num_cpus = "1"
|
2020-06-14 15:07:31 +00:00
|
|
|
once_cell = "1.4.0"
|
2021-02-10 22:57:42 +00:00
|
|
|
rand = "0.8.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"
|
2021-02-10 22:57:42 +00:00
|
|
|
sled = { version = "0.34.6" }
|
2020-06-07 00:54:06 +00:00
|
|
|
structopt = "0.3.14"
|
2020-06-06 21:02:26 +00:00
|
|
|
thiserror = "1.0"
|
2021-08-28 22:50:56 +00:00
|
|
|
time = { version = "0.3.0", features = ["serde"] }
|
2021-09-04 00:53:53 +00:00
|
|
|
tokio = { version = "1", default-features = false, features = ["fs", "io-util", "macros", "process", "sync"] }
|
2021-08-31 02:19:47 +00:00
|
|
|
tokio-stream = { version = "0.1", default-features = false }
|
2021-09-04 00:53:53 +00:00
|
|
|
tokio-util = { version = "0.6", default-features = false, features = ["codec"] }
|
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"] }
|