| 1 | [package] |
| 2 | name = "udev" |
| 3 | version = "0.9.3" |
| 4 | authors = ["David Cuddeback <david.cuddeback@gmail.com>" , "Victoria Brekenfeld <github@drakulix.de>" ] |
| 5 | description = "libudev bindings for Rust" |
| 6 | license = "MIT" |
| 7 | homepage = "https://github.com/Smithay/udev-rs" |
| 8 | repository = "https://github.com/Smithay/udev-rs" |
| 9 | documentation = "http://docs.rs/udev/" |
| 10 | keywords = ["udev" , "hardware" , "bindings" , "sysfs" ] |
| 11 | readme = "README.md" |
| 12 | |
| 13 | [dependencies] |
| 14 | io-lifetimes = "1.0.3" |
| 15 | libudev-sys = "0.1.4" |
| 16 | libc = "0.2" |
| 17 | mio06 = { package = "mio" , version = "^0.6.21" , optional = true } |
| 18 | mio07 = { package = "mio" , version = "0.7" , features = ["os-ext" ], optional = true } |
| 19 | mio08 = { package = "mio" , version = "0.8" , features = ["os-ext" ], optional = true } |
| 20 | mio10 = { package = "mio" , version = "1.0" , features = ["os-ext" ], optional = true } |
| 21 | |
| 22 | [build-dependencies] |
| 23 | pkg-config = "0.3.3" #force a newer version for libudev-sys to fix minimal versions |
| 24 | |
| 25 | [features] |
| 26 | mio = ["mio10" ] # mio feature defaults to the newest mio version |
| 27 | hwdb = [] |
| 28 | send = [] |
| 29 | sync = ["send" ] |
| 30 | |