mirror of
https://github.com/async-rs/async-std.git
synced 2025-04-03 15:06:41 +00:00
Add default as a serde dependency
This commit is contained in:
parent
bcc134cd02
commit
c5a757fb60
1 changed files with 2 additions and 1 deletions
|
@ -39,6 +39,7 @@ docs = ["attributes", "unstable"]
|
||||||
unstable = ["default", "broadcaster"]
|
unstable = ["default", "broadcaster"]
|
||||||
attributes = ["async-attributes"]
|
attributes = ["async-attributes"]
|
||||||
serde-support = [
|
serde-support = [
|
||||||
|
"default",
|
||||||
"serde",
|
"serde",
|
||||||
]
|
]
|
||||||
std = [
|
std = [
|
||||||
|
@ -74,7 +75,7 @@ once_cell = { version = "1.2.0", optional = true }
|
||||||
pin-project-lite = { version = "0.1", optional = true }
|
pin-project-lite = { version = "0.1", optional = true }
|
||||||
pin-utils = { version = "0.1.0-alpha.4", optional = true }
|
pin-utils = { version = "0.1.0-alpha.4", optional = true }
|
||||||
slab = { version = "0.4.2", optional = true }
|
slab = { version = "0.4.2", optional = true }
|
||||||
serde = { version = "1.0.0", optional = true, features = ["derive"] }
|
serde = { version = "1.0.0", optional = true, default-features = false, features = ["derive"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
femme = "1.2.0"
|
femme = "1.2.0"
|
||||||
|
|
Loading…
Reference in a new issue