stable deps

This commit is contained in:
Aode (Lion) 2022-03-08 11:27:49 -06:00
parent 493d99f0ed
commit ec85a80f5d
2 changed files with 8 additions and 9 deletions

View file

@ -1,7 +1,7 @@
[package]
name = "actix-form-data"
description = "Multipart Form Data for Actix Web"
version = "0.6.0-beta.11"
version = "0.6.0"
license = "GPL-3.0"
authors = ["asonix <asonix@asonix.dog>"]
repository = "https://git.asonix.dog/Aardwolf/actix-form-data.git"
@ -10,9 +10,9 @@ keywords = ["actix", "form-data", "multipart", "async"]
edition = "2021"
[dependencies]
actix-multipart = "0.4.0-beta.8"
actix-multipart = "0.4.0"
actix-rt = "2.5.0"
actix-web = { version = "4.0.0-beta.11", default-features = false }
actix-web = { version = "4.0.0", default-features = false }
futures-util = "0.3.17"
mime = "0.3.16"
thiserror = "1.0"
@ -26,4 +26,8 @@ futures-lite = "1.4.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
tracing-subscriber = { version = "0.2.5", features = ["fmt", "tracing-log"] }
tracing-subscriber = { version = "0.3.9", features = [
"env-filter",
"fmt",
"tracing-log",
] }

View file

@ -17,11 +17,6 @@ use std::{
};
use tracing::info;
#[derive(Clone, Debug)]
struct AppState {
form: Form<PathBuf, Errors>,
}
#[derive(Clone, Debug, serde::Deserialize, serde::Serialize)]
struct JsonError {
msg: String,