31 lines
910 B
TOML
31 lines
910 B
TOML
[package]
|
|
name = "baseview"
|
|
version = "0.1.0"
|
|
authors = [
|
|
"William Light <git@wrl.lhiaudio.com>",
|
|
"Charles Saracco <crsaracco@gmail.com>",
|
|
"Mirko Covizzi <mrkcvzz@gmail.com>",
|
|
"Micah Johnston <micah@glowcoil.com>",
|
|
"Billy Messenger <billydm@protonmail.com>",
|
|
]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
log = "0.4.11"
|
|
raw-window-handle = "0.3.3"
|
|
|
|
[target.'cfg(target_os="linux")'.dependencies]
|
|
xcb = { version = "0.9", features = ["thread", "xlib_xcb", "dri2"] }
|
|
x11 = { version = "2.18", features = ["xlib", "xcursor"] }
|
|
xcb-util = { version = "0.3", features = ["icccm"] }
|
|
maybe-uninit = "2.0"
|
|
libc = "0.2"
|
|
nix = "0.18"
|
|
|
|
[target.'cfg(target_os="windows")'.dependencies]
|
|
winapi = { version = "0.3.8", features = ["libloaderapi", "winuser", "windef", "minwindef", "guiddef", "combaseapi", "wingdi", "errhandlingapi"] }
|
|
|
|
[target.'cfg(target_os="macos")'.dependencies]
|
|
cocoa = "0.23.0"
|
|
objc = "0.2.7"
|