[package] name = "system-extensions" version = "0.0.4" authors = ["Ryandw11 "] edition = "2018" license = "MIT" description = "A robust set of extensions for operating system operations." keywords = ["processes", "metadata", "os", "dialogues", "openfile"] repository = "https://github.com/ryandw11/system-extensions" readme = "README.md" exclude = ["test.txt"] [features] processes = [] metadata = [] dialogues = [] notifications = [] [package.metadata.docs.rs] all-features = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] bitflags = "1.2.1" [target.'cfg(windows)'.dependencies] winapi = { version = "0.3", features = ["winuser", "commdlg", "fileapi", "tlhelp32", "errhandlingapi", "processthreadsapi", "winerror", "minwindef", "minwinbase", "synchapi", "handleapi", "sysinfoapi", "timezoneapi", "winnt", "impl-default"] } windows = "0.8.0" [target.'cfg(windows)'.build-dependencies] windows = "0.8.0" [target.'cfg(target_os = "macos")'.dependencies] cocoa = "0.24.0" objc = "0.2.7" [target.'cfg(unix)'.dependencies] chrono = "0.4" [target.'cfg(target_os = "linux")'.dependencies] gtk = "0.9.2"