2020-02-05 04:53:33 +01: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]
|
|
|
|
futures = "0.3.1"
|
|
|
|
actix-multipart = "0.2.0"
|
|
|
|
actix-web = "2.0.0"
|
|
|
|
actix-rt = "1.0.0"
|
2020-03-17 00:53:05 +01:00
|
|
|
rusoto_s3 = "0.43.0"
|
|
|
|
rusoto_core = "0.43.0"
|
2020-02-05 04:53:33 +01:00
|
|
|
bytes = { version = "0.5", features = ["serde"] }
|
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"
|
2020-04-01 11:53:59 +02:00
|
|
|
dotenv = "0.15.0"
|
2020-05-19 06:48:49 +02:00
|
|
|
sanitize-filename = "0.2"
|