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" 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. 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"