forked from actori/actori-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
9 changed files
with
27 additions
and
31 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 = "actix-cors" | ||
version = "0.2.0-alpha.3" | ||
version = "0.2.0" | ||
authors = ["Nikolay Kim <[email protected]>"] | ||
description = "Cross-origin resource sharing (CORS) for Actix applications." | ||
readme = "README.md" | ||
|
@@ -17,7 +17,7 @@ name = "actix_cors" | |
path = "src/lib.rs" | ||
|
||
[dependencies] | ||
actix-web = "2.0.0-alpha.3" | ||
actix-web = "2.0.0-alpha.5" | ||
actix-service = "1.0.0" | ||
derive_more = "0.99.2" | ||
futures = "0.3.1" | ||
|
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.3" | ||
version = "0.2.0" | ||
authors = ["Nikolay Kim <[email protected]>"] | ||
description = "Static files support for actix web." | ||
readme = "README.md" | ||
|
@@ -18,11 +18,11 @@ name = "actix_files" | |
path = "src/lib.rs" | ||
|
||
[dependencies] | ||
actix-web = { version = "2.0.0-alpha.3", default-features = false } | ||
actix-http = "1.0.0-alpha.3" | ||
actix-web = { version = "2.0.0-alpha.5", default-features = false } | ||
actix-http = "1.0.0" | ||
actix-service = "1.0.0" | ||
bitflags = "1" | ||
bytes = "0.5.2" | ||
bytes = "0.5.3" | ||
futures = "0.3.1" | ||
derive_more = "0.99.2" | ||
log = "0.4" | ||
|
@@ -33,4 +33,4 @@ v_htmlescape = "0.4" | |
|
||
[dev-dependencies] | ||
actix-rt = "1.0.0" | ||
actix-web = { version = "2.0.0-alpha.3", features=["openssl"] } | ||
actix-web = { version = "2.0.0-alpha.5", features=["openssl"] } |
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-framed" | ||
version = "0.3.0-alpha.1" | ||
version = "0.3.0" | ||
authors = ["Nikolay Kim <[email protected]>"] | ||
description = "Actix framed app server" | ||
readme = "README.md" | ||
|
@@ -24,15 +24,15 @@ actix-codec = "0.2.0" | |
actix-service = "1.0.0" | ||
actix-router = "0.2.0" | ||
actix-rt = "1.0.0" | ||
actix-http = "1.0.0-alpha.3" | ||
actix-http = "1.0.0" | ||
|
||
bytes = "0.5.2" | ||
bytes = "0.5.3" | ||
futures = "0.3.1" | ||
pin-project = "0.4.6" | ||
log = "0.4" | ||
|
||
[dev-dependencies] | ||
actix-server = "1.0.0" | ||
actix-connect = { version = "1.0.0", features=["openssl"] } | ||
actix-http-test = { version = "1.0.0-alpha.3", features=["openssl"] } | ||
actix-utils = "1.0.0" | ||
actix-http-test = { version = "1.0.0", features=["openssl"] } | ||
actix-utils = "1.0.3" |
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-identity" | ||
version = "0.2.0-alpha.3" | ||
version = "0.2.0" | ||
authors = ["Nikolay Kim <[email protected]>"] | ||
description = "Identity service for actix web framework." | ||
readme = "README.md" | ||
|
@@ -17,7 +17,7 @@ name = "actix_identity" | |
path = "src/lib.rs" | ||
|
||
[dependencies] | ||
actix-web = { version = "2.0.0-alpha.3", default-features = false, features = ["secure-cookies"] } | ||
actix-web = { version = "2.0.0-alpha.5", default-features = false, features = ["secure-cookies"] } | ||
actix-service = "1.0.0" | ||
futures = "0.3.1" | ||
serde = "1.0" | ||
|
@@ -26,5 +26,5 @@ time = "0.1.42" | |
|
||
[dev-dependencies] | ||
actix-rt = "1.0.0" | ||
actix-http = "1.0.0-alpha.3" | ||
bytes = "0.5.2" | ||
actix-http = "1.0.0" | ||
bytes = "0.5.3" |
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-multipart" | ||
version = "0.2.0-alpha.3" | ||
version = "0.2.0" | ||
authors = ["Nikolay Kim <[email protected]>"] | ||
description = "Multipart support for actix web framework." | ||
readme = "README.md" | ||
|
@@ -9,19 +9,17 @@ homepage = "https://actix.rs" | |
repository = "https://github.com/actix/actix-web.git" | ||
documentation = "https://docs.rs/actix-multipart/" | ||
license = "MIT/Apache-2.0" | ||
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"] | ||
workspace = ".." | ||
edition = "2018" | ||
|
||
[lib] | ||
name = "actix_multipart" | ||
path = "src/lib.rs" | ||
|
||
[dependencies] | ||
actix-web = { version = "2.0.0-alpha.3", default-features = false } | ||
actix-web = { version = "2.0.0-alpha.5", default-features = false } | ||
actix-service = "1.0.0" | ||
actix-utils = "1.0.0" | ||
bytes = "0.5.2" | ||
actix-utils = "1.0.3" | ||
bytes = "0.5.3" | ||
derive_more = "0.99.2" | ||
httparse = "1.3" | ||
futures = "0.3.1" | ||
|
@@ -32,4 +30,4 @@ twoway = "0.2" | |
|
||
[dev-dependencies] | ||
actix-rt = "1.0.0" | ||
actix-http = "1.0.0-alpha.3" | ||
actix-http = "1.0.0" |
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-session" | ||
version = "0.3.0-alpha.3" | ||
version = "0.3.0" | ||
authors = ["Nikolay Kim <[email protected]>"] | ||
description = "Session for actix web framework." | ||
readme = "README.md" | ||
|
@@ -9,8 +9,6 @@ homepage = "https://actix.rs" | |
repository = "https://github.com/actix/actix-web.git" | ||
documentation = "https://docs.rs/actix-session/" | ||
license = "MIT/Apache-2.0" | ||
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"] | ||
workspace = ".." | ||
edition = "2018" | ||
|
||
[lib] | ||
|
@@ -24,9 +22,9 @@ default = ["cookie-session"] | |
cookie-session = ["actix-web/secure-cookies"] | ||
|
||
[dependencies] | ||
actix-web = "2.0.0-alpha.3" | ||
actix-web = "2.0.0-alpha.5" | ||
actix-service = "1.0.0" | ||
bytes = "0.5.2" | ||
bytes = "0.5.3" | ||
derive_more = "0.99.2" | ||
futures = "0.3.1" | ||
serde = "1.0" | ||
|
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