@@ -6,30 +6,29 @@ homepage = "https://github.com/al8n/wg"
6
6
repository = " https://github.com/al8n/wg.git"
7
7
documentation = " https://docs.rs/wg/"
8
8
readme = " README.md"
9
- version = " 0.7.4 "
9
+ version = " 0.7.5 "
10
10
license = " MIT OR Apache-2.0"
11
11
keywords = [" waitgroup" , " async" , " sync" , " notify" , " wake" ]
12
12
categories = [" asynchronous" , " concurrency" , " data-structures" ]
13
13
edition = " 2021"
14
14
15
15
[features ]
16
- default = []
17
- full = [" triomphe" , " parking_lot " ]
16
+ default = [" std " , " parking_lot " , " triomphe " ]
17
+ std = [" triomphe?/default " , " event-listener?/default " , " futures-core?/default " , " tokio?/rt " ]
18
18
triomphe = [" dep:triomphe" ]
19
19
parking_lot = [" dep:parking_lot" ]
20
20
21
21
future = [" event-listener" , " pin-project-lite" ]
22
-
23
22
tokio = [" dep:tokio" , " futures-core" , " pin-project-lite" ]
24
23
25
24
[dependencies ]
26
25
parking_lot = { version = " 0.12" , optional = true }
27
- triomphe = { version = " 0.1" , optional = true }
28
- event-listener = { version = " 5" , optional = true }
26
+ triomphe = { version = " 0.1" , optional = true , default-features = false }
27
+ event-listener = { version = " 5" , optional = true , default-features = false }
29
28
pin-project-lite = { version = " 0.2" , optional = true }
30
29
31
- tokio = { version = " 1" , default-features = false , optional = true , features = [" sync" , " rt " ] }
32
- futures-core = { version = " 0.3" , optional = true }
30
+ tokio = { version = " 1" , optional = true , default-features = false , features = [" sync" ] }
31
+ futures-core = { version = " 0.3" , default-features = false , optional = true }
33
32
34
33
[dev-dependencies ]
35
34
tokio = { version = " 1" , features = [" full" ] }
0 commit comments