Skip to content

Commit

Permalink
prepare actix-server release
Browse files Browse the repository at this point in the history
  • Loading branch information
fafhrd91 committed Mar 2, 2019
1 parent 672c393 commit 2e4c84d
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 12 deletions.
11 changes: 9 additions & 2 deletions actix-server/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,22 @@
# Changes

## [0.3.0] - 2019-03-02

### Changed

* Use new `NewService` trait


## [0.2.1] - 2019-02-09

### Changes
### Changed

* Drop service response


## [0.2.0] - 2019-02-01

### Changes
### Changed

* Migrate to actix-service 0.2

Expand Down
9 changes: 3 additions & 6 deletions actix-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "actix-server"
version = "0.2.1"
version = "0.3.0"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Actix server - General purpose tcp server"
keywords = ["network", "framework", "async", "futures"]
Expand All @@ -11,7 +11,7 @@ categories = ["network-programming", "asynchronous"]
license = "MIT/Apache-2.0"
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
edition = "2018"
workspace = "../"
workspace = ".."

[package.metadata.docs.rs]
features = ["ssl", "tls", "rust-tls"]
Expand All @@ -33,17 +33,14 @@ ssl = ["openssl", "tokio-openssl"]
rust-tls = ["rustls", "tokio-rustls", "webpki", "webpki-roots"]

[dependencies]
#actix-service = "0.2.1"
actix-service = { path="../actix-service" }
actix-service = "0.3.0"
actix-rt = "0.1.0"

log = "0.4"
num_cpus = "1.0"

# io
mio = "^0.6.13"
net2 = "0.2"
bytes = "0.4"
futures = "0.1"
slab = "0.4"
tokio-io = "0.1"
Expand Down
3 changes: 0 additions & 3 deletions actix-server/src/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -183,9 +183,6 @@ impl ServerBuilder {
/// This methods panics if no socket addresses get bound.
///
/// ```rust,ignore
/// # extern crate futures;
/// # extern crate actix_web;
/// # use futures::Future;
/// use actix_web::*;
///
/// fn main() {
Expand Down
2 changes: 1 addition & 1 deletion actix-server/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ impl Token {
}

/// Start server building process
pub fn build() -> ServerBuilder {
pub fn new() -> ServerBuilder {
ServerBuilder::default()
}

0 comments on commit 2e4c84d

Please sign in to comment.