21 lines
669 B
TOML
21 lines
669 B
TOML
[package]
|
|
name = "multipart_helper"
|
|
description = "A helper crate for handling multipart forms in the jobbörse create"
|
|
keywords = ["multipart/form-data"]
|
|
categories = ["encoding", "network-programming"]
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
license.workspace = true
|
|
readme.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
actix-multipart = { workspace = true }
|
|
futures-util = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
toml = { workspace = true }
|