-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed duplicate content-type for json & form (#195)
* Fixed duplicate content-type for json & form * Bump revision * Clippy fixes * clippy & fmt
- Loading branch information
1 parent
e403596
commit e996fff
Showing
7 changed files
with
15 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "saphir" | ||
version = "3.0.0" | ||
version = "3.0.1" | ||
edition = "2018" | ||
authors = ["Richer Archambault <[email protected]>"] | ||
description = "Fully async-await http server framework" | ||
|
@@ -47,7 +47,7 @@ futures-util = "0.3" | |
saphir-cookie = "0.13.2" | ||
http = "0.2" | ||
http-body = "0.4" | ||
parking_lot = "0.11" | ||
parking_lot = "0.12" | ||
regex = "1.4" | ||
uuid = { version = "0.8", features = ["serde", "v4"], optional = true } | ||
rustls = { version = "0.20.2", optional = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters