1 | [package] |
2 | name = "event-listener" |
3 | # When publishing a new version: |
4 | # - Update CHANGELOG.md |
5 | # - Create "v2.x.y" git tag |
6 | version = "2.5.3" |
7 | authors = ["Stjepan Glavina <stjepang@gmail.com>" ] |
8 | edition = "2018" |
9 | rust-version = "1.36" |
10 | description = "Notify async tasks or threads" |
11 | license = "Apache-2.0 OR MIT" |
12 | repository = "https://github.com/smol-rs/event-listener" |
13 | keywords = ["condvar" , "eventcount" , "wake" , "blocking" , "park" ] |
14 | categories = ["asynchronous" , "concurrency" ] |
15 | exclude = ["/.*" ] |
16 | |
17 | [dev-dependencies] |
18 | futures = { version = "0.3" , default-features = false, features = ["std" ] } |
19 | waker-fn = "1" |
20 | |