1
0
mirror of https://github.com/actix/examples synced 2024-11-23 22:41:07 +01:00
examples/forms/multipart-s3/Cargo.toml

22 lines
481 B
TOML
Raw Normal View History

2020-02-05 04:53:33 +01:00
[package]
2022-08-01 02:17:59 +02:00
name = "multipart-s3-example"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
edition = "2021"
2020-02-05 04:53:33 +01:00
[dependencies]
2022-02-25 22:25:21 +01:00
actix-multipart = "0.4"
2022-08-01 02:17:59 +02:00
actix-web = "4"
2022-10-26 17:51:27 +02:00
actix-web-lab = "0.18"
2022-08-01 02:17:59 +02:00
2022-10-26 17:51:27 +02:00
aws-config = "0.49"
aws-sdk-s3 = "0.19"
2022-02-18 03:13:08 +01:00
2022-08-01 02:17:59 +02:00
dotenv = "0.15"
2022-12-11 16:25:57 +01:00
env_logger = "0.10"
2022-07-12 02:08:56 +02:00
futures-util = { version = "0.3.17", default-features = false, features = ["std"] }
2022-02-18 03:13:08 +01:00
log = "0.4"
2022-07-09 23:54:51 +02:00
sanitize-filename = "0.4"
2022-08-01 02:17:59 +02:00
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1.13.1", features = ["io-util", "fs"] }