mirror of
https://github.com/actix/actix-web.git
synced 2024-12-21 07:36:43 +00:00
prepare awc release 3.0.0-beta.5
This commit is contained in:
parent
b2d6b6a70c
commit
5a162932f3
5 changed files with 22 additions and 20 deletions
10
Cargo.toml
10
Cargo.toml
|
@ -4,8 +4,12 @@ version = "4.0.0-beta.6"
|
|||
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
||||
description = "Actix Web is a powerful, pragmatic, and extremely fast web framework for Rust"
|
||||
keywords = ["actix", "http", "web", "framework", "async"]
|
||||
categories = ["network-programming", "asynchronous",
|
||||
"web-programming::http-server", "web-programming::websocket"]
|
||||
categories = [
|
||||
"network-programming",
|
||||
"asynchronous",
|
||||
"web-programming::http-server",
|
||||
"web-programming::websocket"
|
||||
]
|
||||
homepage = "https://actix.rs"
|
||||
repository = "https://github.com/actix/actix-web"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
@ -90,7 +94,7 @@ url = "2.1"
|
|||
|
||||
[dev-dependencies]
|
||||
actix-test = { version = "0.1.0-beta.1", features = ["openssl", "rustls"] }
|
||||
awc = { version = "3.0.0-beta.4", features = ["openssl"] }
|
||||
awc = { version = "3.0.0-beta.5", features = ["openssl"] }
|
||||
|
||||
brotli2 = "0.3.2"
|
||||
criterion = "0.3"
|
||||
|
|
|
@ -35,7 +35,7 @@ actix-tls = "3.0.0-beta.5"
|
|||
actix-utils = "3.0.0"
|
||||
actix-rt = "2.2"
|
||||
actix-server = "2.0.0-beta.3"
|
||||
awc = { version = "3.0.0-beta.4", default-features = false }
|
||||
awc = { version = "3.0.0-beta.5", default-features = false }
|
||||
|
||||
base64 = "0.13"
|
||||
bytes = "1"
|
||||
|
|
|
@ -26,7 +26,7 @@ actix-service = "2.0.0"
|
|||
actix-utils = "3.0.0"
|
||||
actix-web = { version = "4.0.0-beta.6", default-features = false, features = ["cookies"] }
|
||||
actix-rt = "2.1"
|
||||
awc = { version = "3.0.0-beta.4", default-features = false, features = ["cookies"] }
|
||||
awc = { version = "3.0.0-beta.5", default-features = false, features = ["cookies"] }
|
||||
|
||||
futures-core = { version = "0.3.7", default-features = false, features = ["std"] }
|
||||
futures-util = { version = "0.3.7", default-features = false, features = [] }
|
||||
|
|
|
@ -31,6 +31,6 @@ tokio = { version = "1", features = ["sync"] }
|
|||
actix-rt = "2.2"
|
||||
actix-test = "0.1.0-beta.1"
|
||||
|
||||
awc = { version = "3.0.0-beta.4", default-features = false }
|
||||
awc = { version = "3.0.0-beta.5", default-features = false }
|
||||
env_logger = "0.8"
|
||||
futures-util = { version = "0.3.7", default-features = false }
|
||||
|
|
|
@ -1,22 +1,20 @@
|
|||
[package]
|
||||
name = "awc"
|
||||
version = "3.0.0-beta.4"
|
||||
version = "3.0.0-beta.5"
|
||||
authors = [
|
||||
"Nikolay Kim <fafhrd91@gmail.com>",
|
||||
"fakeshadow <24548779@qq.com>",
|
||||
]
|
||||
description = "Async HTTP and WebSocket client library built on the Actix ecosystem"
|
||||
readme = "README.md"
|
||||
keywords = ["actix", "http", "framework", "async", "web"]
|
||||
homepage = "https://actix.rs"
|
||||
repository = "https://github.com/actix/actix-web.git"
|
||||
documentation = "https://docs.rs/awc/"
|
||||
categories = [
|
||||
"network-programming",
|
||||
"asynchronous",
|
||||
"web-programming::http-client",
|
||||
"web-programming::websocket",
|
||||
]
|
||||
homepage = "https://actix.rs"
|
||||
repository = "https://github.com/actix/actix-web"
|
||||
license = "MIT OR Apache-2.0"
|
||||
edition = "2018"
|
||||
|
||||
|
|
Loading…
Reference in a new issue