1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-09-09 05:08:32 +00:00
actix-web/examples/multipart/Cargo.toml

16 lines
305 B
TOML
Raw Normal View History

2017-10-19 06:43:50 +00:00
[package]
name = "multipart-example"
version = "0.1.0"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
2018-01-01 05:55:25 +00:00
workspace = "../.."
2017-10-19 06:43:50 +00:00
[[bin]]
name = "multipart"
path = "src/main.rs"
[dependencies]
env_logger = "*"
2017-12-19 17:51:28 +00:00
futures = "0.1"
actix = { git = "https://github.com/actix/actix.git" }
2018-01-14 03:04:07 +00:00
actix-web = { path="../../" }