From 6be1f37f6c03bae9eef32cf297f936efbb2ec57e Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 25 Jul 2019 08:46:11 +0300 Subject: [PATCH 1/3] Minor typo corrections in docs (#33) --- actix-service/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actix-service/src/lib.rs b/actix-service/src/lib.rs index 82e26677..ee327da0 100644 --- a/actix-service/src/lib.rs +++ b/actix-service/src/lib.rs @@ -176,7 +176,7 @@ impl ServiceExt for T where T: Service {} /// Creates new `Service` values. /// /// Acts as a service factory. This is useful for cases where new `Service` -/// values must be produced. One case is a TCP servier listener. The listner +/// values must be produced. One case is a TCP server listener. The listener /// accepts new TCP streams, obtains a new `Service` value using the /// `NewService` trait, and uses that new `Service` value to process inbound /// requests on that new TCP stream. From 0baceb0e561b5e93da16bc54580ebce868741685 Mon Sep 17 00:00:00 2001 From: Neil Locketz Date: Tue, 30 Jul 2019 12:35:57 -0400 Subject: [PATCH 2/3] Fix typo in desc (#34) --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 3f778044..cc9e4596 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "actix-net" version = "0.3.0" authors = ["Nikolay Kim "] -description = "Actix net - framework for the compisible network services for Rust" +description = "Actix net - framework for the composable network services for Rust" readme = "README.md" keywords = ["network", "framework", "async", "futures"] homepage = "https://actix.rs" From 8b398c33862bf456258a6cd72e33f66c75e10c41 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Sun, 4 Aug 2019 15:46:14 +0200 Subject: [PATCH 3/3] threadpool: Update parking_lot to 0.9 Signed-off-by: Igor Gnatenko --- actix-threadpool/CHANGES.md | 1 + actix-threadpool/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/actix-threadpool/CHANGES.md b/actix-threadpool/CHANGES.md index 69e3c8b5..fc45eee5 100644 --- a/actix-threadpool/CHANGES.md +++ b/actix-threadpool/CHANGES.md @@ -3,6 +3,7 @@ ### Changed * Update `derive_more` to 0.15 +* Update `parking_lot` to 0.9 ## [0.1.1] - 2019-06-05 diff --git a/actix-threadpool/Cargo.toml b/actix-threadpool/Cargo.toml index 4ec48563..34ad0e2f 100644 --- a/actix-threadpool/Cargo.toml +++ b/actix-threadpool/Cargo.toml @@ -20,7 +20,7 @@ path = "src/lib.rs" [dependencies] derive_more = "0.15" futures = "0.1.25" -parking_lot = "0.8" +parking_lot = "0.9" lazy_static = "1.2" log = "0.4" num_cpus = "1.10"