1
1
mirror of https://github.com/wez/wezterm.git synced 2024-09-20 19:27:22 +03:00
wezterm/window/Cargo.toml

41 lines
900 B
TOML
Raw Normal View History

2019-08-08 05:19:04 +03:00
[package]
name = "window"
version = "0.1.0"
authors = ["Wez Furlong"]
edition = "2018"
repository = "https://github.com/wez/wezterm"
description = "Cross platform window setup and render"
license = "MIT"
[dependencies]
failure = "0.1"
failure_derive = "0.1"
palette = "0.4"
2019-08-08 05:19:04 +03:00
promise = { path = "../promise" }
resize = "0.3"
2019-08-08 05:19:04 +03:00
[features]
[target."cfg(windows)".dependencies]
winapi = { version = "0.3", features = [
2019-08-08 08:10:30 +03:00
"dwmapi",
2019-08-08 05:19:04 +03:00
"handleapi",
2019-08-08 19:13:22 +03:00
"libloaderapi",
2019-08-08 05:19:04 +03:00
"synchapi",
2019-08-08 19:13:22 +03:00
"winerror",
"winuser",
2019-08-08 05:19:04 +03:00
]}
2019-08-09 03:44:57 +03:00
[target.'cfg(all(unix, not(target_os = "macos")))'.dependencies]
x11 = {version ="2.18", features = ["xlib_xcb"]}
xcb = "0.8"
xcb-util = { features = [ "icccm", "ewmh", "keysyms", ], version = "0.2" }
xkbcommon = { version = "0.4", features = ["x11"] }
mio = "0.6"
mio-extras = "2.0"
2019-08-09 06:53:16 +03:00
[target.'cfg(target_os="macos")'.dependencies]
cocoa = "0.19"
objc = "0.2"
core-graphics = "0.17"