2018-01-15 10:34:59 +03:00
|
|
|
[package]
|
|
|
|
authors = ["Wez Furlong <wez@wezfurlong.org>"]
|
2018-01-29 10:52:21 +03:00
|
|
|
name = "wezterm"
|
2018-01-15 10:34:59 +03:00
|
|
|
version = "0.1.0"
|
2019-02-19 10:10:37 +03:00
|
|
|
edition = "2018"
|
2019-03-24 09:45:14 +03:00
|
|
|
build = "build.rs"
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
vergen = "3"
|
2018-01-15 10:34:59 +03:00
|
|
|
|
2019-03-25 05:06:03 +03:00
|
|
|
[target.'cfg(windows)'.build-dependencies]
|
|
|
|
embed-resource = "1.1"
|
|
|
|
|
2018-01-15 10:34:59 +03:00
|
|
|
[dependencies]
|
2019-03-23 23:57:26 +03:00
|
|
|
base91 = { path = "base91" }
|
|
|
|
bitflags = "1.0"
|
2019-02-18 11:34:02 +03:00
|
|
|
clipboard = "0.5"
|
2019-03-23 23:57:26 +03:00
|
|
|
dirs = "1.0"
|
|
|
|
euclid = "0.19"
|
|
|
|
failure = "0.1"
|
|
|
|
failure_derive = "0.1"
|
|
|
|
foreign-types = "0.3"
|
2019-03-23 19:28:40 +03:00
|
|
|
freetype = { path = "deps/freetype" }
|
2019-03-23 23:57:26 +03:00
|
|
|
gl = "0.11"
|
2019-05-05 16:55:19 +03:00
|
|
|
glium = { version = "0.24", default-features = false, features = ["glutin", "icon_loading"]}
|
2019-03-23 23:57:26 +03:00
|
|
|
harfbuzz = { path = "deps/harfbuzz" }
|
|
|
|
lazy_static = "1.3"
|
|
|
|
leb128 = "0.2"
|
|
|
|
libc = "0.2"
|
2019-02-19 09:57:40 +03:00
|
|
|
open = "1.2"
|
2019-03-23 23:57:26 +03:00
|
|
|
palette = "0.4"
|
2019-05-20 04:38:59 +03:00
|
|
|
portable-pty = { path = "pty", features = ["serde_support"]}
|
2019-03-04 18:38:56 +03:00
|
|
|
promise = { path = "promise" }
|
2019-03-23 23:57:26 +03:00
|
|
|
rayon = "1.0"
|
|
|
|
serde = {version="1.0", features = ["rc"]}
|
|
|
|
serde_derive = "1.0"
|
|
|
|
structopt = "0.2"
|
|
|
|
term = { path = "term" }
|
|
|
|
termwiz = { path = "termwiz"}
|
|
|
|
toml = "0.4"
|
|
|
|
unicode-normalization = "0.1"
|
|
|
|
unicode-width = "0.1"
|
2019-05-28 05:44:55 +03:00
|
|
|
varbincode = "0.1"
|
2019-05-05 16:55:19 +03:00
|
|
|
winit = "0.19"
|
2019-03-16 20:04:41 +03:00
|
|
|
zstd = "0.4"
|
2018-01-31 21:38:33 +03:00
|
|
|
|
2019-02-17 23:55:02 +03:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
2019-03-23 23:57:26 +03:00
|
|
|
mio = "0.6"
|
|
|
|
mio-extras = "2.0"
|
2019-02-17 23:55:02 +03:00
|
|
|
|
2019-03-23 19:28:40 +03:00
|
|
|
[dependencies.fontconfig]
|
|
|
|
optional = true
|
|
|
|
path = "deps/fontconfig"
|
|
|
|
|
|
|
|
# on linux, font-loader pulls in servo-font* crates which conflict with
|
|
|
|
# our newer font related deps, so we avoid it on linux
|
2019-03-23 23:57:26 +03:00
|
|
|
[target.'cfg(any(windows, target_os = "macos"))'.dependencies]
|
|
|
|
font-loader = { version = "0.8" }
|
2019-03-03 16:08:58 +03:00
|
|
|
|
2019-03-23 23:57:26 +03:00
|
|
|
[target."cfg(windows)".dependencies]
|
2019-03-24 03:07:10 +03:00
|
|
|
shared_library = "0.1"
|
2019-03-23 23:57:26 +03:00
|
|
|
uds_windows = "0.1"
|
|
|
|
winapi = { version = "0.3", features = [
|
2019-02-17 10:36:50 +03:00
|
|
|
"winuser",
|
|
|
|
"consoleapi",
|
|
|
|
"handleapi",
|
|
|
|
"fileapi",
|
|
|
|
"namedpipeapi",
|
2019-03-03 00:16:25 +03:00
|
|
|
"synchapi",
|
2019-03-23 23:57:26 +03:00
|
|
|
]}
|
2019-02-17 03:15:39 +03:00
|
|
|
|
2018-02-20 23:33:30 +03:00
|
|
|
[target.'cfg(any(target_os = "android", all(unix, not(target_os = "macos"))))'.dependencies]
|
2019-03-23 23:57:26 +03:00
|
|
|
egli = "0.4"
|
2019-03-23 19:28:40 +03:00
|
|
|
fontconfig = { path = "deps/fontconfig" }
|
2019-03-23 23:57:26 +03:00
|
|
|
x11 = {version ="2.18", features = ["xlib_xcb"]}
|
2018-02-20 23:33:30 +03:00
|
|
|
|
2018-01-15 10:34:59 +03:00
|
|
|
|
2019-03-23 23:57:26 +03:00
|
|
|
[target.'cfg(all(unix, not(target_os = "macos")))'.dependencies]
|
|
|
|
xcb = "0.8"
|
|
|
|
xcb-util = { features = [ "icccm", "ewmh", "keysyms", ], version = "0.2" }
|
|
|
|
xkbcommon = { version = "0.4", features = ["x11"] }
|
2018-02-01 06:00:15 +03:00
|
|
|
|
2018-02-21 09:33:09 +03:00
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
2019-02-22 11:57:36 +03:00
|
|
|
core-foundation = "0.6"
|
2019-03-23 23:57:26 +03:00
|
|
|
core-graphics = "0.17"
|
2019-05-05 16:55:19 +03:00
|
|
|
core-text = "13.2"
|
2018-02-21 09:33:09 +03:00
|
|
|
|
2018-02-01 06:00:15 +03:00
|
|
|
[features]
|
|
|
|
debug-escape-sequences = ["term/debug-escape-sequences"]
|
2019-02-16 20:27:22 +03:00
|
|
|
force-glutin = []
|
2019-03-23 19:28:40 +03:00
|
|
|
force-fontconfig = ["fontconfig"]
|
2018-02-07 18:51:04 +03:00
|
|
|
|
2019-02-18 13:37:05 +03:00
|
|
|
[patch.crates-io]
|
2019-05-05 16:55:19 +03:00
|
|
|
# This allows using the git version in the help output
|
2019-03-24 09:45:14 +03:00
|
|
|
structopt-derive = { git = "https://github.com/wez/structopt", branch="vergen" }
|
2019-05-28 05:44:55 +03:00
|
|
|
# https://github.com/jwilm/vte/pull/20
|
|
|
|
#vte = { git = "https://github.com/wez/vte", branch="oscbigbuf" }
|
2019-02-18 13:37:05 +03:00
|
|
|
|
2018-02-07 18:51:04 +03:00
|
|
|
[workspace]
|
2019-02-23 07:59:03 +03:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
debug = true
|