1
1
mirror of https://github.com/wez/wezterm.git synced 2024-09-20 11:17:15 +03:00
wezterm/Cargo.toml

107 lines
2.3 KiB
TOML
Raw Normal View History

[package]
authors = ["Wez Furlong <wez@wezfurlong.org>"]
name = "wezterm"
version = "0.1.0"
2019-02-19 10:10:37 +03:00
edition = "2018"
[dependencies]
2018-08-05 01:35:38 +03:00
bitflags = "~1.0"
2019-02-20 07:49:31 +03:00
euclid = "~0.19"
2018-08-05 01:35:38 +03:00
failure = "~0.1"
failure_derive = "~0.1"
2019-02-20 07:49:31 +03:00
gl = "~0.11"
2018-08-05 01:35:38 +03:00
libc = "~0.2"
2019-02-20 07:49:31 +03:00
palette = "~0.4"
serde = {version="~1.0", features = ["rc"]}
2018-08-05 01:35:38 +03:00
serde_derive = "~1.0"
toml = "~0.4"
unicode-width = "~0.1"
dirs = "~1.0"
2019-02-17 04:12:54 +03:00
font-loader = "0.8"
rusttype = "0.7"
clipboard = "0.5"
2019-02-18 20:42:31 +03:00
unicode-normalization = "~0.1"
freetype = "~0.4"
2019-02-19 09:57:40 +03:00
open = "1.2"
structopt = "0.2"
foreign-types = "0.3"
winit = "0.18"
2019-03-04 02:22:22 +03:00
boxfnonce = "0.1"
rayon = "1.0"
2019-03-04 18:38:56 +03:00
promise = { path = "promise" }
base91 = { path = "base91" }
2019-03-16 10:38:03 +03:00
varbincode = { path = "varbincode" }
lazy_static = "1.3"
leb128 = "0.2"
zstd = "0.4"
2019-02-17 23:55:02 +03:00
[target.'cfg(unix)'.dependencies]
harfbuzz-sys = { git = "https://github.com/wez/rust-harfbuzz", branch="coretext" }
2019-02-18 01:37:07 +03:00
mio = "~0.6"
mio-extras = "~2.0"
2019-02-17 23:55:02 +03:00
[dependencies.term]
path = "term"
[dependencies.termwiz]
path = "termwiz"
[target."cfg(windows)".dependencies.uds_windows]
version = "0.1"
2019-02-17 10:36:50 +03:00
[target."cfg(windows)".dependencies.winapi]
features = [
"winuser",
"consoleapi",
"handleapi",
"fileapi",
"namedpipeapi",
2019-03-03 00:16:25 +03:00
"synchapi",
2019-02-17 10:36:50 +03:00
]
version = "~0.3"
[target.'cfg(any(target_os = "android", all(unix, not(target_os = "macos"))))'.dependencies]
2018-08-05 01:35:38 +03:00
servo-fontconfig = "~0.4"
egli = "~0.4"
2019-02-20 07:49:31 +03:00
x11 = {version ="~2.18", features = ["xlib_xcb"]}
[dependencies.glium]
version = "~0.23"
default-features = false
2019-02-16 19:54:24 +03:00
features = ["glutin"]
[target.'cfg(all(unix, not(target_os = "macos")))'.dependencies.xcb]
2018-08-05 01:35:38 +03:00
version = "~0.8"
[target.'cfg(all(unix, not(target_os = "macos")))'.dependencies.xkbcommon]
version = "~0.4"
features = ["x11"]
[target.'cfg(all(unix, not(target_os = "macos")))'.dependencies.xcb-util]
features = [
"icccm",
"ewmh",
2018-01-28 03:25:34 +03:00
"keysyms",
]
2018-08-05 01:35:38 +03:00
version = "~0.2"
2018-02-21 09:33:09 +03:00
[target.'cfg(target_os = "macos")'.dependencies]
2019-02-18 20:23:18 +03:00
core-text = "~13.1"
core-graphics = "0.17"
core-foundation = "0.6"
2018-02-21 09:33:09 +03:00
[features]
debug-escape-sequences = ["term/debug-escape-sequences"]
force-glutin = []
2019-02-17 04:12:54 +03:00
force-rusttype = []
[patch.crates-io]
# We need https://github.com/tomaka/glutin/pull/1099
glutin = { git = "https://github.com/yvt/glutin", branch="patch-macos-iscurrent" }
harfbuzz-sys = { git = "https://github.com/wez/rust-harfbuzz", branch="coretext" }
[workspace]
2019-02-23 07:59:03 +03:00
[profile.release]
debug = true