1
0
mirror of https://github.com/actix/examples synced 2024-11-24 06:43:00 +01:00
examples/forms/multipart-s3/Cargo.toml

19 lines
396 B
TOML
Raw Normal View History

2020-02-05 04:53:33 +01:00
[package]
name = "multipart-s3"
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:07:22 +01:00
actix-web = "4"
2022-02-25 22:25:21 +01:00
actix-multipart = "0.4"
2022-02-18 03:13:08 +01:00
dotenv = "0.15.0"
env_logger = "0.9"
2022-03-06 01:15:16 +01:00
futures-util = { version = "0.3.7", default-features = false, features = ["std"] }
2022-02-18 03:13:08 +01:00
log = "0.4"
2022-07-09 23:54:51 +02:00
rusoto_core = "0.48"
rusoto_s3 = "0.48"
sanitize-filename = "0.4"
2020-04-01 11:53:59 +02:00
serde = { version = "1.0.104", features = ["derive"] }
2020-02-05 04:53:33 +01:00
serde_json = "1.0"