1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-11-24 00:21:08 +01:00

update deps

This commit is contained in:
Nikolay Kim 2018-10-08 21:58:37 -07:00
parent 4e7fac08b9
commit 93b1c5fd46
3 changed files with 5 additions and 10 deletions

View File

@ -1,6 +1,6 @@
environment: environment:
global: global:
PROJECT_NAME: actix PROJECT_NAME: actix-web
matrix: matrix:
# Stable channel # Stable channel
- TARGET: i686-pc-windows-msvc - TARGET: i686-pc-windows-msvc
@ -37,4 +37,5 @@ build: false
# Equivalent to Travis' `script` phase # Equivalent to Travis' `script` phase
test_script: test_script:
- cargo clean
- cargo test --no-default-features --features="flate2-rust" - cargo test --no-default-features --features="flate2-rust"

View File

@ -1,6 +1,6 @@
# Changes # Changes
## [0.7.9] - 2018-09-x ## [0.7.9] - 2018-10-09
### Added ### Added

View File

@ -17,7 +17,7 @@ exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
build = "build.rs" build = "build.rs"
[package.metadata.docs.rs] [package.metadata.docs.rs]
features = ["tls", "alpn", "rust-tls", "session", "brotli", "flate2-c"] features = ["tls", "ssl", "rust-tls", "session", "brotli", "flate2-c"]
[badges] [badges]
travis-ci = { repository = "actix/actix-web", branch = "master" } travis-ci = { repository = "actix/actix-web", branch = "master" }
@ -62,8 +62,7 @@ cell = ["actix-net/cell"]
[dependencies] [dependencies]
actix = "0.7.0" actix = "0.7.0"
actix-net = { git="https://github.com/actix/actix-net.git" } actix-net = "0.1.0"
#actix-net = { path = "../actix-net" }
base64 = "0.9" base64 = "0.9"
bitflags = "1.0" bitflags = "1.0"
@ -139,8 +138,3 @@ version_check = "0.1"
lto = true lto = true
opt-level = 3 opt-level = 3
codegen-units = 1 codegen-units = 1
[workspace]
members = [
"./",
]