-
Notifications
You must be signed in to change notification settings - Fork 342
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #757 from dignifiedquire/feat/smol
- Loading branch information
Showing
56 changed files
with
842 additions
and
1,619 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ version = "1.5.0" | |
authors = [ | ||
"Stjepan Glavina <[email protected]>", | ||
"Yoshua Wuyts <[email protected]>", | ||
"Friedel Ziegelmayer <[email protected]>", | ||
"Contributors to async-std", | ||
] | ||
edition = "2018" | ||
|
@@ -24,19 +25,13 @@ rustdoc-args = ["--cfg", "feature=\"docs\""] | |
default = [ | ||
"std", | ||
"async-task", | ||
"crossbeam-channel", | ||
"crossbeam-deque", | ||
"crossbeam-queue", | ||
"futures-timer", | ||
"kv-log-macro", | ||
"log", | ||
"mio", | ||
"mio-uds", | ||
"num_cpus", | ||
"pin-project-lite", | ||
] | ||
docs = ["attributes", "unstable", "default"] | ||
unstable = ["std", "broadcaster", "futures-timer"] | ||
unstable = ["std", "broadcaster"] | ||
attributes = ["async-attributes"] | ||
std = [ | ||
"alloc", | ||
|
@@ -47,6 +42,10 @@ std = [ | |
"once_cell", | ||
"pin-utils", | ||
"slab", | ||
"smol", | ||
"wasm-timer", | ||
"wasm-bindgen-futures", | ||
"futures-channel", | ||
] | ||
alloc = [ | ||
"futures-core/alloc", | ||
|
@@ -55,32 +54,38 @@ alloc = [ | |
|
||
[dependencies] | ||
async-attributes = { version = "1.1.1", optional = true } | ||
async-task = { version = "1.3.1", optional = true } | ||
async-task = { version = "3.0.0", optional = true } | ||
broadcaster = { version = "1.0.0", optional = true } | ||
crossbeam-channel = { version = "0.4.2", optional = true } | ||
crossbeam-deque = { version = "0.7.3", optional = true } | ||
crossbeam-queue = { version = "0.2.0", optional = true } | ||
crossbeam-utils = { version = "0.7.2", optional = true } | ||
futures-core = { version = "0.3.4", optional = true, default-features = false } | ||
futures-io = { version = "0.3.4", optional = true } | ||
futures-timer = { version = "3.0.2", optional = true } | ||
kv-log-macro = { version = "1.0.4", optional = true } | ||
log = { version = "0.4.8", features = ["kv_unstable"], optional = true } | ||
memchr = { version = "2.3.3", optional = true } | ||
mio = { version = "0.6.19", optional = true } | ||
mio-uds = { version = "0.6.7", optional = true } | ||
num_cpus = { version = "1.12.0", optional = true } | ||
once_cell = { version = "1.3.1", optional = true } | ||
pin-project-lite = { version = "0.1.4", optional = true } | ||
pin-utils = { version = "0.1.0-alpha.4", optional = true } | ||
slab = { version = "0.4.2", optional = true } | ||
|
||
[target.'cfg(not(target_os = "unknown"))'.dependencies] | ||
smol = { version = "0.1.1", optional = true } | ||
|
||
[target.'cfg(target_arch = "wasm32")'.dependencies] | ||
wasm-timer = { version = "0.2.4", optional = true } | ||
wasm-bindgen-futures = { version = "0.4.10", optional = true } | ||
futures-channel = { version = "0.3.4", optional = true } | ||
|
||
[target.'cfg(target_arch = "wasm32")'.dev-dependencies] | ||
wasm-bindgen-test = "0.3.10" | ||
|
||
[dev-dependencies] | ||
femme = "1.3.0" | ||
rand = "0.7.3" | ||
surf = "1.0.3" | ||
tempdir = "0.3.7" | ||
futures = "0.3.4" | ||
rand_xorshift = "0.2.0" | ||
|
||
[[test]] | ||
name = "stream" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.