Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
fafhrd91 committed Dec 13, 2019
1 parent 232f71b commit fac6dec
Show file tree
Hide file tree
Showing 9 changed files with 27 additions and 31 deletions.
4 changes: 2 additions & 2 deletions actix-cors/Cargo.toml
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"
Expand All @@ -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"
Expand Down
10 changes: 5 additions & 5 deletions actix-files/Cargo.toml
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"
Expand All @@ -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"
Expand All @@ -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"] }
10 changes: 5 additions & 5 deletions actix-framed/Cargo.toml
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"
Expand All @@ -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"
2 changes: 1 addition & 1 deletion actix-http/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ fail-ure = { version = "0.1.5", package="failure", optional = true }
[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-http-test = { version = "1.0.0", features=["openssl"] }
actix-tls = { version = "1.0.0", features=["openssl"] }
futures = "0.3.1"
env_logger = "0.6"
Expand Down
8 changes: 4 additions & 4 deletions actix-identity/Cargo.toml
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"
Expand All @@ -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"
Expand All @@ -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"
12 changes: 5 additions & 7 deletions actix-multipart/Cargo.toml
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"
Expand All @@ -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"
Expand All @@ -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"
8 changes: 3 additions & 5 deletions actix-session/Cargo.toml
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"
Expand All @@ -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]
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion awc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ actix-http = "1.0.0"
actix-rt = "1.0.0"

base64 = "0.11"
bytes = "0.5.2"
bytes = "0.5.3"
derive_more = "0.99.2"
futures-core = "0.3.1"
log =" 0.4"
Expand Down
2 changes: 1 addition & 1 deletion test-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,5 @@ time = "0.1"
open-ssl = { version="0.10", package="openssl", optional = true }

[dev-dependencies]
#actix-web = "2.0.0-alpha.4"
actix-web = "2.0.0-alpha.5"
actix-http = "1.0.0"

0 comments on commit fac6dec

Please sign in to comment.