1
0
mirror of https://github.com/actix/examples synced 2025-01-23 06:14:35 +01:00
examples/multipart-s3/Cargo.toml

20 lines
519 B
TOML
Raw Normal View History

2020-02-05 12:53:33 +09:00
[package]
name = "multipart-s3"
version = "0.1.0"
authors = ["cheolgyu <38715510+cheolgyu@users.noreply.github.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2020-09-12 16:49:45 +01:00
actix-web = "3"
actix-multipart = "0.3"
2020-02-05 12:53:33 +09:00
futures = "0.3.1"
2020-03-17 08:53:05 +09:00
rusoto_s3 = "0.43.0"
rusoto_core = "0.43.0"
2020-02-05 12:53:33 +09:00
bytes = { version = "0.5", features = ["serde"] }
2020-04-01 18:53:59 +09:00
serde = { version = "1.0.104", features = ["derive"] }
2020-02-05 12:53:33 +09:00
serde_json = "1.0"
2020-04-01 18:53:59 +09:00
dotenv = "0.15.0"
2020-05-19 13:48:49 +09:00
sanitize-filename = "0.2"