1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-10 15:04:32 +03:00
wezterm/window/Cargo.toml

27 lines
486 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"
promise = { path = "../promise" }
[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
]}