mirror of
https://github.com/async-rs/async-std.git
synced 2025-04-03 23:16:40 +00:00
Merge pull request #1012 from joshtriplett/available-parallelism
This commit is contained in:
commit
d9aaefb6c9
2 changed files with 4 additions and 5 deletions
|
@ -29,7 +29,6 @@ default = [
|
||||||
"futures-lite",
|
"futures-lite",
|
||||||
"kv-log-macro",
|
"kv-log-macro",
|
||||||
"log",
|
"log",
|
||||||
"num_cpus",
|
|
||||||
"pin-project-lite",
|
"pin-project-lite",
|
||||||
"gloo-timers",
|
"gloo-timers",
|
||||||
]
|
]
|
||||||
|
@ -71,7 +70,6 @@ futures-io = { version = "0.3.4", optional = true }
|
||||||
kv-log-macro = { version = "1.0.6", optional = true }
|
kv-log-macro = { version = "1.0.6", optional = true }
|
||||||
log = { version = "0.4.8", features = ["kv_unstable"], optional = true }
|
log = { version = "0.4.8", features = ["kv_unstable"], optional = true }
|
||||||
memchr = { version = "2.3.3", optional = true }
|
memchr = { version = "2.3.3", optional = true }
|
||||||
num_cpus = { version = "1.12.0", optional = true }
|
|
||||||
once_cell = { version = "1.3.1", optional = true }
|
once_cell = { version = "1.3.1", optional = true }
|
||||||
pin-project-lite = { version = "0.2.0", optional = true }
|
pin-project-lite = { version = "0.2.0", optional = true }
|
||||||
pin-utils = { version = "0.1.0-alpha.4", optional = true }
|
pin-utils = { version = "0.1.0-alpha.4", optional = true }
|
||||||
|
|
|
@ -267,9 +267,10 @@
|
||||||
//!
|
//!
|
||||||
//! * `ASYNC_STD_THREAD_COUNT`: The number of threads that the
|
//! * `ASYNC_STD_THREAD_COUNT`: The number of threads that the
|
||||||
//! async-std runtime will start. By default, this is one per logical
|
//! async-std runtime will start. By default, this is one per logical
|
||||||
//! cpu as reported by the [num_cpus](num_cpus) crate, which may be
|
//! cpu as determined by [async-global-executor](async_global_executor),
|
||||||
//! different than the number of physical cpus. Async-std _will panic_
|
//! which may be different than the number of physical cpus. Async-std
|
||||||
//! if this is set to any value other than a positive integer.
|
//! _will panic_ if this is set to any value other than a positive
|
||||||
|
//! integer.
|
||||||
//! * `ASYNC_STD_THREAD_NAME`: The name that async-std's runtime
|
//! * `ASYNC_STD_THREAD_NAME`: The name that async-std's runtime
|
||||||
//! threads report to the operating system. The default value is
|
//! threads report to the operating system. The default value is
|
||||||
//! `"async-std/runtime"`.
|
//! `"async-std/runtime"`.
|
||||||
|
|
Loading…
Reference in a new issue