pict-rs-aggregator/Cargo.toml

73 lines
1.9 KiB
TOML
Raw Normal View History

2020-12-08 21:59:55 +00:00
[package]
name = "pict-rs-aggregator"
description = "A simple image aggregation service for pict-rs"
2024-02-02 00:15:16 +00:00
version = "0.5.0"
2020-12-08 21:59:55 +00:00
authors = ["asonix <asonix@asonix.dog>"]
license = "AGPL-3.0"
readme = "README.md"
repository = "https://git.asonix.dog/asonix/pict-rs-aggregator"
2021-10-21 21:43:59 +00:00
edition = "2021"
2020-12-08 21:59:55 +00:00
build = "src/build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2024-02-12 21:17:09 +00:00
[profile.release]
strip = true
2022-01-30 23:07:41 +00:00
[features]
2022-03-23 15:02:17 +00:00
default = []
2022-01-30 23:07:41 +00:00
2020-12-08 21:59:55 +00:00
[dependencies]
2022-09-28 23:43:28 +00:00
actix-rt = "2.7.0"
actix-web = { version = "4.0.0", default-features = false, features = ["rustls-0_21"] }
awc = { version = "3.0.0", default-features = false, features = ["rustls-0_21"] }
2023-11-13 18:55:40 +00:00
bcrypt = "0.15"
2022-09-28 23:43:28 +00:00
clap = { version = "4.0.2", features = ["derive", "env"] }
color-eyre = "0.6.2"
2023-11-13 18:55:40 +00:00
console-subscriber = "0.2"
2020-12-08 21:59:55 +00:00
mime = "0.3"
2024-02-01 23:24:44 +00:00
minify-html = "0.15.0"
2023-11-13 18:55:40 +00:00
opentelemetry = "0.21"
opentelemetry_sdk = { version = "0.21", features = ["rt-tokio"] }
opentelemetry-otlp = "0.14"
2022-02-19 02:08:56 +00:00
qrcodegen = "1.7"
rustls = "0.21"
rustls-channel-resolver = "0.1.0"
rustls-pemfile = "2.0.0"
2020-12-08 21:59:55 +00:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
2022-02-01 16:47:43 +00:00
sled = { version = "0.34.7", features = ["zstd"] }
tokio = { version = "1", default-features = false, features = ["fs", "sync"] }
2020-12-08 21:59:55 +00:00
thiserror = "1.0"
2021-09-19 19:32:04 +00:00
tracing = "0.1"
2021-10-25 01:51:10 +00:00
tracing-error = "0.2"
2021-09-19 19:32:04 +00:00
tracing-futures = "0.2"
2023-11-13 18:55:40 +00:00
tracing-log = "0.2"
tracing-opentelemetry = "0.22"
2022-01-30 20:52:49 +00:00
tracing-subscriber = { version = "0.3", features = [
"ansi",
"env-filter",
"fmt",
] }
2020-12-08 21:59:55 +00:00
url = { version = "2.2", features = ["serde"] }
2022-05-27 23:27:44 +00:00
uuid = { version = "1", features = ["serde", "v4"] }
webpki-roots = "0.26.0"
2020-12-08 21:59:55 +00:00
2021-09-19 19:32:04 +00:00
[dependencies.tracing-actix-web]
version = "0.7.9"
2021-09-25 20:59:58 +00:00
default-features = false
2023-11-13 18:55:40 +00:00
features = ["emit_event_on_error", "opentelemetry_0_21"]
2021-09-19 19:32:04 +00:00
2021-09-25 20:59:58 +00:00
[dependencies.tracing-awc]
version = "0.1.9"
2021-09-25 20:59:58 +00:00
default-features = false
features = ["opentelemetry_0_21"]
2021-09-19 19:32:04 +00:00
2021-12-03 21:08:22 +00:00
[dev-dependencies]
2023-11-13 18:55:40 +00:00
ructe = "0.17.0"
2021-12-03 21:08:22 +00:00
2020-12-08 21:59:55 +00:00
[build-dependencies]
dotenv = "0.15.0"
2023-11-13 18:55:40 +00:00
ructe = { version = "0.17.0", features = ["sass", "mime03"] }