File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,6 @@ default = [
29
29
" futures-lite" ,
30
30
" kv-log-macro" ,
31
31
" log" ,
32
- " num_cpus" ,
33
32
" pin-project-lite" ,
34
33
" gloo-timers" ,
35
34
]
@@ -71,7 +70,6 @@ futures-io = { version = "0.3.4", optional = true }
71
70
kv-log-macro = { version = " 1.0.6" , optional = true }
72
71
log = { version = " 0.4.8" , features = [" kv_unstable" ], optional = true }
73
72
memchr = { version = " 2.3.3" , optional = true }
74
- num_cpus = { version = " 1.12.0" , optional = true }
75
73
once_cell = { version = " 1.3.1" , optional = true }
76
74
pin-project-lite = { version = " 0.2.0" , optional = true }
77
75
pin-utils = { version = " 0.1.0-alpha.4" , optional = true }
Original file line number Diff line number Diff line change 267
267
//!
268
268
//! * `ASYNC_STD_THREAD_COUNT`: The number of threads that the
269
269
//! async-std runtime will start. By default, this is one per logical
270
- //! cpu as reported by the [num_cpus](num_cpus) crate, which may be
271
- //! different than the number of physical cpus. Async-std _will panic_
272
- //! if this is set to any value other than a positive integer.
270
+ //! cpu as determined by [async-global-executor](async_global_executor),
271
+ //! which may be different than the number of physical cpus. Async-std
272
+ //! _will panic_ if this is set to any value other than a positive
273
+ //! integer.
273
274
//! * `ASYNC_STD_THREAD_NAME`: The name that async-std's runtime
274
275
//! threads report to the operating system. The default value is
275
276
//! `"async-std/runtime"`.
You can’t perform that action at this time.
0 commit comments