forked from actix/actix-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
72 changed files
with
763 additions
and
554 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
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 = "actix-web" | ||
version = "2.0.0-alpha.2" | ||
version = "2.0.0-alpha.3" | ||
authors = ["Nikolay Kim <[email protected]>"] | ||
description = "Actix web is a simple, pragmatic and extremely fast web framework for Rust." | ||
readme = "README.md" | ||
|
@@ -66,24 +66,24 @@ fail = ["actix-http/fail"] | |
openssl = ["open-ssl", "actix-tls/openssl", "awc/openssl"] | ||
|
||
# rustls | ||
# rustls = ["rust-tls", "actix-server/rustls", "awc/rustls"] | ||
rustls = ["rust-tls", "actix-tls/rustls", "awc/rustls"] | ||
|
||
[dependencies] | ||
actix-codec = "0.2.0-alpha.2" | ||
actix-service = "1.0.0-alpha.2" | ||
actix-utils = "1.0.0-alpha.2" | ||
actix-router = "0.1.5" | ||
actix-rt = "1.0.0-alpha.2" | ||
actix-server = "1.0.0-alpha.2" | ||
actix-testing = "1.0.0-alpha.2" | ||
actix-codec = "0.2.0-alpha.3" | ||
actix-service = "1.0.0-alpha.3" | ||
actix-utils = "1.0.0-alpha.3" | ||
actix-router = "0.2.0" | ||
actix-rt = "1.0.0-alpha.3" | ||
actix-server = "1.0.0-alpha.3" | ||
actix-testing = "1.0.0-alpha.3" | ||
actix-threadpool = "0.3.0" | ||
actix-tls = { version = "1.0.0-alpha.1" } | ||
actix-tls = { version = "1.0.0-alpha.3" } | ||
|
||
actix-web-codegen = "0.2.0-alpha.2" | ||
actix-http = "0.3.0-alpha.2" | ||
awc = { version = "0.3.0-alpha.2", optional = true } | ||
|
||
bytes = "0.4" | ||
bytes = "0.5.2" | ||
derive_more = "0.99.2" | ||
encoding_rs = "0.8" | ||
futures = "0.3.1" | ||
|
@@ -102,7 +102,7 @@ url = "2.1" | |
|
||
# ssl support | ||
open-ssl = { version="0.10", package="openssl", optional = true } | ||
# rust-tls = { version = "0.16", package="rustls", optional = true } | ||
rust-tls = { version = "0.16", package="rustls", optional = true } | ||
|
||
[dev-dependencies] | ||
# actix = "0.8.3" | ||
|
@@ -130,3 +130,13 @@ actix-session = { path = "actix-session" } | |
actix-files = { path = "actix-files" } | ||
actix-multipart = { path = "actix-multipart" } | ||
awc = { path = "awc" } | ||
|
||
actix-codec = { git = "https://github.com/actix/actix-net.git" } | ||
actix-connect = { git = "https://github.com/actix/actix-net.git" } | ||
actix-rt = { git = "https://github.com/actix/actix-net.git" } | ||
actix-server = { git = "https://github.com/actix/actix-net.git" } | ||
actix-service = { git = "https://github.com/actix/actix-net.git" } | ||
actix-testing = { git = "https://github.com/actix/actix-net.git" } | ||
actix-tls = { git = "https://github.com/actix/actix-net.git" } | ||
actix-utils = { git = "https://github.com/actix/actix-net.git" } | ||
actix-router = { git = "https://github.com/actix/actix-net.git" } |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "actix-cors" | ||
version = "0.2.0-alpha.1" | ||
version = "0.2.0-alpha.3" | ||
authors = ["Nikolay Kim <[email protected]>"] | ||
description = "Cross-origin resource sharing (CORS) for Actix applications." | ||
readme = "README.md" | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "actix-files" | ||
version = "0.2.0-alpha.2" | ||
version = "0.2.0-alpha.3" | ||
authors = ["Nikolay Kim <[email protected]>"] | ||
description = "Static files support for actix web." | ||
readme = "README.md" | ||
|
@@ -20,9 +20,9 @@ path = "src/lib.rs" | |
[dependencies] | ||
actix-web = { version = "2.0.0-alpha.2", default-features = false } | ||
actix-http = "0.3.0-alpha.2" | ||
actix-service = "1.0.0-alpha.2" | ||
actix-service = "1.0.0-alpha.3" | ||
bitflags = "1" | ||
bytes = "0.4" | ||
bytes = "0.5.2" | ||
futures = "0.3.1" | ||
derive_more = "0.99.2" | ||
log = "0.4" | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "actix-http" | ||
version = "0.3.0-alpha.2" | ||
version = "0.3.0-alpha.3" | ||
authors = ["Nikolay Kim <[email protected]>"] | ||
description = "Actix http primitives" | ||
readme = "README.md" | ||
|
@@ -16,7 +16,7 @@ edition = "2018" | |
workspace = ".." | ||
|
||
[package.metadata.docs.rs] | ||
features = ["openssl", "fail", "brotli", "flate2-zlib", "secure-cookies"] | ||
features = ["openssl", "rustls", "fail", "brotli", "flate2-zlib", "secure-cookies"] | ||
|
||
[lib] | ||
name = "actix_http" | ||
|
@@ -26,10 +26,10 @@ path = "src/lib.rs" | |
default = [] | ||
|
||
# openssl | ||
openssl = ["open-ssl", "actix-tls/openssl", "actix-connect/openssl", "tokio-openssl"] | ||
openssl = ["actix-tls/openssl", "actix-connect/openssl"] | ||
|
||
# rustls support | ||
# rustls = ["rust-tls", "webpki-roots", "actix-connect/rustls"] | ||
rustls = ["actix-tls/rustls", "actix-connect/rustls"] | ||
|
||
# brotli encoding, requires c compiler | ||
brotli = ["brotli2"] | ||
|
@@ -47,26 +47,26 @@ fail = ["failure"] | |
secure-cookies = ["ring"] | ||
|
||
[dependencies] | ||
actix-service = "1.0.0-alpha.2" | ||
actix-codec = "0.2.0-alpha.2" | ||
actix-connect = "1.0.0-alpha.2" | ||
actix-utils = "1.0.0-alpha.2" | ||
actix-rt = "1.0.0-alpha.2" | ||
actix-service = "1.0.0-alpha.3" | ||
actix-codec = "0.2.0-alpha.3" | ||
actix-connect = "1.0.0-alpha.3" | ||
actix-utils = "1.0.0-alpha.3" | ||
actix-rt = "1.0.0-alpha.3" | ||
actix-threadpool = "0.3.0" | ||
actix-tls = { version = "1.0.0-alpha.1", optional = true } | ||
actix-tls = { version = "1.0.0-alpha.3", optional = true } | ||
|
||
base64 = "0.11" | ||
bitflags = "1.0" | ||
bytes = "0.4" | ||
bytes = "0.5.2" | ||
copyless = "0.1.4" | ||
chrono = "0.4.6" | ||
derive_more = "0.99.2" | ||
either = "1.5.2" | ||
encoding_rs = "0.8" | ||
futures = "0.3.1" | ||
fxhash = "0.2.1" | ||
h2 = "0.2.0-alpha.3" | ||
http = "0.1.17" | ||
h2 = "0.2.0" | ||
http = "0.2.0" | ||
httparse = "1.3" | ||
indexmap = "1.2" | ||
lazy_static = "1.0" | ||
|
@@ -76,14 +76,13 @@ mime = "0.3" | |
percent-encoding = "2.1" | ||
pin-project = "0.4.6" | ||
rand = "0.7" | ||
regex = "1.0" | ||
regex = "1.3" | ||
serde = "1.0" | ||
serde_json = "1.0" | ||
sha1 = "0.6" | ||
slab = "0.4" | ||
serde_urlencoded = "0.6.1" | ||
time = "0.1.42" | ||
trust-dns-resolver = { version="0.18.0-alpha.1", default-features = false } | ||
|
||
# for secure cookie | ||
ring = { version = "0.16.9", optional = true } | ||
|
@@ -94,17 +93,13 @@ flate2 = { version="1.0.7", optional = true, default-features = false } | |
|
||
# optional deps | ||
failure = { version = "0.1.5", optional = true } | ||
open-ssl = { version="0.10", package="openssl", optional = true } | ||
tokio-openssl = { version = "0.4.0-alpha.6", optional = true } | ||
|
||
# rust-tls = { version = "0.16.0", package="rustls", optional = true } | ||
# webpki-roots = { version = "0.18", optional = true } | ||
|
||
[dev-dependencies] | ||
actix-server = { version = "1.0.0-alpha.2" } | ||
actix-connect = { version = "1.0.0-alpha.2", features=["openssl"] } | ||
actix-http-test = { version = "0.3.0-alpha.2", features=["openssl"] } | ||
actix-tls = { version = "1.0.0-alpha.1", features=["openssl"] } | ||
actix-server = { version = "1.0.0-alpha.3" } | ||
actix-connect = { version = "1.0.0-alpha.3", features=["openssl"] } | ||
actix-http-test = { version = "0.3.0-alpha.3", features=["openssl"] } | ||
actix-tls = { version = "1.0.0-alpha.3", features=["openssl"] } | ||
env_logger = "0.6" | ||
serde_derive = "1.0" | ||
open-ssl = { version="0.10", package="openssl" } | ||
open-ssl = { version="0.10", package = "openssl" } | ||
rust-tls = { version="0.16", package = "rustls" } |
Oops, something went wrong.