1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-27 12:23:46 +03:00
wezterm/window/Cargo.toml

72 lines
2.1 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]
2020-06-13 20:21:49 +03:00
pretty_env_logger = "0.4"
2019-11-30 05:05:09 +03:00
[build-dependencies]
gl_generator = {version="0.14", 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"
2020-06-13 20:21:49 +03:00
libloading = { version = "0.6", 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"
glium = { version = "0.27", optional=true, default-features = false}
2019-08-08 05:19:04 +03:00
[features]
opengl = ["cgl", "glium", "gl_generator", "libloading"]
wayland = ["smithay-client-toolkit", "memmap", "wayland-client", "wayland-egl"]
2019-08-08 05:19:04 +03:00
[target."cfg(windows)".dependencies]
lazy_static = "1.4"
2019-08-08 05:19:04 +03:00
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
]}
winreg = "0.6"
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]
2020-01-26 20:14:26 +03:00
filedescriptor = { version="0.7", path = "../filedescriptor" }
2019-08-09 03:44:57 +03:00
x11 = {version ="2.18", features = ["xlib_xcb"]}
xcb = {version="0.9", features=["shm", "xkb", "xlib_xcb"]}
xcb-util = { features = [ "icccm", "ewmh", "keysyms", "shm"], version = "0.3" }
xkbcommon = { version = "0.5", features = ["x11", "wayland"], git="https://github.com/wez/xkbcommon-rs.git", rev="01a0a0cd5663405e6e4abb1ad3add9add1496f58"}
2019-08-09 03:44:57 +03:00
mio = "0.6"
mio-extras = "2.0"
2019-08-09 21:15:09 +03:00
libc = "0.2"
2020-06-06 21:58:38 +03:00
smithay-client-toolkit = {version = "0.9", optional = true, features=["calloop"], git="https://github.com/wez/client-toolkit.git", branch="title_trunc"}
2019-11-28 03:39:00 +03:00
memmap = {version="0.7", optional=true}
wayland-client = {version="0.26", optional=true}
wayland-egl = {version="0.26", optional=true}
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 }