mirror of
https://github.com/actix/examples
synced 2024-11-24 06:43:00 +01:00
18 lines
515 B
TOML
18 lines
515 B
TOML
[package]
|
|
name = "multipart-example"
|
|
version = "1.0.0"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
description = "Simple file uploader in Actix Web with Async/Await"
|
|
keywords = ["actix", "actix-web", "multipart"]
|
|
repository = "https://github.com/actix/examples"
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
actix-multipart = { workspace = true }
|
|
actix-web = { workspace = true }
|
|
|
|
futures-util = { version = "0.3.17", default-features = false, features = ["std"] }
|
|
sanitize-filename = "0.4"
|
|
uuid = { version = "1", features = ["v4"] }
|