2023-09-27 23:08:48 +00:00
|
|
|
[package]
|
2024-08-30 18:05:51 +00:00
|
|
|
name = "discoursio-quoter"
|
2024-10-23 09:34:34 +00:00
|
|
|
version = "0.0.9"
|
2023-09-27 23:08:48 +00:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-04-08 16:52:41 +00:00
|
|
|
futures = "0.3.30"
|
|
|
|
serde_json = "1.0.115"
|
|
|
|
actix-web = "4.5.1"
|
|
|
|
reqwest = { version = "0.12.3", features = ["json"] }
|
2024-06-06 10:33:25 +00:00
|
|
|
sentry = { version = "0.34.0", features = ["tokio"] }
|
2024-04-08 16:52:41 +00:00
|
|
|
uuid = { version = "1.8.0", features = ["v4"] }
|
2024-09-23 13:32:54 +00:00
|
|
|
redis = { version = "0.27.2", features = ["tokio-comp"] }
|
2024-04-08 16:52:41 +00:00
|
|
|
tokio = { version = "1.37.0", features = ["full"] }
|
2024-08-30 18:05:51 +00:00
|
|
|
serde = { version = "1.0.209", features = ["derive"] }
|
2024-06-06 10:33:25 +00:00
|
|
|
sentry-actix = "0.34.0"
|
2024-08-31 00:32:37 +00:00
|
|
|
aws-sdk-s3 = "1.47.0"
|
|
|
|
image = "0.25.2"
|
2024-08-30 18:05:51 +00:00
|
|
|
mime_guess = "2.0.5"
|
|
|
|
aws-config = "1.5.5"
|
2024-08-31 00:32:37 +00:00
|
|
|
actix-multipart = "0.7.2"
|
2024-10-02 15:38:44 +00:00
|
|
|
log = "0.4.22"
|
2024-10-02 15:56:52 +00:00
|
|
|
env_logger = "0.11.5"
|
2024-10-22 17:35:51 +00:00
|
|
|
actix = "0.13.5"
|
2023-10-02 11:28:06 +00:00
|
|
|
|
|
|
|
[[bin]]
|
2024-08-30 18:05:51 +00:00
|
|
|
name = "quoter"
|
2023-10-06 10:50:20 +00:00
|
|
|
path = "./src/main.rs"
|