1
1
mirror of https://github.com/wez/wezterm.git synced 2024-10-26 15:52:29 +03:00
wezterm/window/Cargo.toml

71 lines
1.8 KiB
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"
build = "build.rs"
2019-11-30 05:05:09 +03:00
[dev-dependencies]
pretty_env_logger = "0.3"
[build-dependencies]
gl_generator = {version="0.13", optional=true}
2019-08-08 05:19:04 +03:00
[dependencies]
async-task = "1.2"
2019-12-15 08:43:05 +03:00
anyhow = "1.0"
thiserror = "1.0"
2019-08-10 07:53:46 +03:00
bitflags = "1.0"
2019-09-21 22:32:21 +03:00
euclid = "0.20"
lazy_static = "1.3"
libloading = { version = "0.5", optional=true }
line_drawing = "0.8"
log = "0.4"
2020-01-04 19:52:50 +03:00
metrics = { version="0.12", features=["std"]}
2020-01-10 09:39:34 +03:00
palette = "0.5"
2019-08-08 05:19:04 +03:00
promise = { path = "../promise" }
resize = "0.3"
2019-10-07 17:17:57 +03:00
glium = { version = "0.26.0-alpha3", optional=true, default-features = false}
2019-08-08 05:19:04 +03:00
[features]
async_await = []
opengl = ["cgl", "glium", "gl_generator", "libloading"]
2019-11-30 05:05:09 +03:00
wayland = ["smithay-client-toolkit", "memmap", "wayland-client"]
2019-08-08 05:19:04 +03:00
[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",
"imm",
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
]}
clipboard-win = "2.2"
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]
filedescriptor = "0.7"
2019-08-09 03:44:57 +03:00
x11 = {version ="2.18", features = ["xlib_xcb"]}
xcb = "0.8"
# See: https://github.com/meh/rust-xcb-util/issues/12
xcb-util = { features = [ "icccm", "ewmh", "keysyms", "shm"], version = "=0.2.1" }
2019-08-09 03:44:57 +03:00
xkbcommon = { version = "0.4", features = ["x11"] }
mio = "0.6"
mio-extras = "2.0"
2019-08-09 21:15:09 +03:00
libc = "0.2"
2019-11-28 03:39:00 +03:00
smithay-client-toolkit = {version = "0.6", optional = true}
memmap = {version="0.7", optional=true}
2019-11-30 05:05:09 +03:00
wayland-client = {version="0.23", optional=true, features=["egl"]}
2019-08-09 06:53:16 +03:00
[target.'cfg(target_os="macos")'.dependencies]
cocoa = "0.20"
2019-08-09 06:53:16 +03:00
objc = "0.2"
2019-11-29 23:47:56 +03:00
clipboard = "0.5"
core-foundation = "0.7"
core-graphics = "0.19"
2019-10-07 17:17:57 +03:00
cgl = { version = "0.3", optional = true }