1
0
Fork 0
baseview/Cargo.toml

28 lines
812 B
TOML
Raw Normal View History

2020-05-26 04:04:48 +10:00
[package]
name = "baseview"
version = "0.1.0"
2020-05-26 05:35:33 +10:00
authors = [
"William Light <git@wrl.lhiaudio.com>",
2020-05-26 06:24:16 +10:00
"Charles Saracco <crsaracco@gmail.com>",
2020-05-26 07:14:42 +10:00
"Mirko Covizzi <mrkcvzz@gmail.com>",
"Micah Johnston <micah@glowcoil.com>",
"Billy Messenger <billydm@protonmail.com>",
2020-05-26 05:35:33 +10:00
]
2020-05-26 04:04:48 +10:00
edition = "2018"
[dependencies]
log = "0.4.11"
raw-window-handle = "0.3.3"
2020-05-26 05:35:33 +10:00
[target.'cfg(target_os="linux")'.dependencies]
xcb = { version = "0.9", features = ["thread", "xlib_xcb", "dri2"] }
x11 = { version = "2.18", features = ["xlib"] }
libc = "0.2"
2020-05-26 05:35:33 +10:00
2020-05-26 06:24:16 +10:00
[target.'cfg(target_os="windows")'.dependencies]
2020-06-16 07:02:39 +10:00
winapi = { version = "0.3.8", features = ["libloaderapi", "winuser", "windef", "minwindef", "guiddef", "combaseapi", "wingdi", "errhandlingapi"] }
2020-05-26 05:35:33 +10:00
2020-05-26 07:14:42 +10:00
[target.'cfg(target_os="macos")'.dependencies]
cocoa = "0.23.0"
2020-05-26 07:14:42 +10:00
objc = "0.2.7"