pict-rs/Cargo.toml

45 lines
1.5 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-09-16 22:52:57 +00:00
version = "0.3.0-alpha.33"
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]
2021-02-10 22:57:42 +00:00
actix-form-data = "0.6.0-beta.1"
2021-06-26 18:10:28 +00:00
actix-rt = "2.2.0"
actix-web = { version = "4.0.0-beta.8", default-features = false }
anyhow = "1.0"
2021-09-12 16:00:29 +00:00
awc = { version = "3.0.0-beta.7", default-features = false, features = ["rustls"] }
2020-10-10 23:22:00 +00:00
base64 = "0.13.0"
dashmap = "4.0.2"
futures-util = "0.3.17"
mime = "0.3.1"
num_cpus = "1.13"
2020-06-14 15:07:31 +00:00
once_cell = "1.4.0"
2021-09-18 21:29:30 +00:00
opentelemetry = { version = "0.16", features = ["rt-tokio"] }
opentelemetry-otlp = "0.9"
2021-02-10 22:57:42 +00:00
rand = "0.8.0"
serde = { version = "1.0", features = ["derive"] }
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"
thiserror = "1.0"
2021-08-28 22:50:56 +00:00
time = { version = "0.3.0", features = ["serde"] }
2021-09-04 19:20:31 +00:00
tokio = { version = "1", default-features = false, features = ["fs", "io-util", "process", "sync"] }
tokio-util = { version = "0.6", default-features = false, features = ["codec"] }
tracing = "0.1.15"
2021-09-18 21:34:23 +00:00
tracing-actix-web = { version = "0.4.0-beta.8", git = "https://github.com/asonix/tracing-actix-web", branch = "asonix/tracing-error-work-around" }
2021-09-14 01:22:42 +00:00
tracing-error = "0.1.2"
tracing-futures = "0.2.4"
2021-09-14 01:22:42 +00:00
tracing-log = "0.1.2"
2021-09-18 21:29:30 +00:00
tracing-opentelemetry = "0.15"
tracing-subscriber = { version = "0.2.5", features = ["fmt", "tracing-log"] }
2021-09-18 21:29:30 +00:00
url = "2.2"