1
0
mirror of https://github.com/actix/examples synced 2025-01-22 22:05:57 +01:00

22 lines
480 B
TOML
Raw Normal View History

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