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

105 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"
build = "build.rs"
[build-dependencies]
vergen = "3"
[target.'cfg(windows)'.build-dependencies]
2019-11-04 19:00:58 +03:00
embed-resource = "1.3"
[dependencies]
allsorts = "0.1"
2019-12-15 08:43:05 +03:00
anyhow = "1.0"
thiserror = "1.0"
base64 = "0.10"
2019-03-23 23:57:26 +03:00
base91 = { path = "base91" }
bitflags = "1.0"
crossbeam-channel = "0.3"
2019-03-23 23:57:26 +03:00
dirs = "1.0"
downcast-rs = "1.0"
2019-09-21 22:32:21 +03:00
euclid = "0.20"
2019-12-15 08:43:05 +03:00
filedescriptor = "0.6"
2019-06-09 01:30:47 +03:00
pretty_env_logger = "0.3"
2019-03-23 23:57:26 +03:00
failure = "0.1"
failure_derive = "0.1"
freetype = { path = "deps/freetype" }
image = "0.21"
2019-03-23 23:57:26 +03:00
harfbuzz = { path = "deps/harfbuzz" }
lazy_static = "1.3"
leb128 = "0.2"
libc = "0.2"
2019-06-09 01:17:41 +03:00
log = "0.4"
2019-02-19 09:57:40 +03:00
open = "1.2"
native-tls = "0.2"
# file change notification
notify = "4.0"
2019-03-23 23:57:26 +03:00
palette = "0.4"
portable-pty = { path = "pty", features = ["serde_support", "ssh"]}
2019-03-04 18:38:56 +03:00
promise = { path = "promise" }
ratelimit_meter = "5.0"
2019-03-23 23:57:26 +03:00
serde = {version="1.0", features = ["rc"]}
serde_derive = "1.0"
serial = "0.4"
2019-12-08 21:43:55 +03:00
ssh2 = "0.6"
structopt = "0.2"
2019-06-14 01:00:57 +03:00
tabout = { path = "tabout" }
2019-03-23 23:57:26 +03:00
term = { path = "term" }
termwiz = { path = "termwiz"}
toml = "0.4"
unicode-normalization = "0.1"
unicode-segmentation = "1.5"
2019-03-23 23:57:26 +03:00
unicode-width = "0.1"
2019-05-28 05:44:55 +03:00
varbincode = "0.1"
walkdir = "2"
window = { path = "window", features=["opengl", "wayland"]}
zstd = "0.4"
2019-02-17 23:55:02 +03:00
[target.'cfg(unix)'.dependencies]
2019-06-22 22:44:22 +03:00
daemonize = "0.4"
2019-02-17 23:55:02 +03:00
[target.'cfg(not(windows))'.dependencies]
# show a notification
notify-rust = "3"
# 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" }
font-kit = "0.5"
2019-03-23 23:57:26 +03:00
[target."cfg(windows)".dependencies]
dwrote = "0.9"
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",
"winsock2",
2019-03-23 23:57:26 +03:00
]}
winrt-notification = "0.2"
[target.'cfg(any(target_os = "android", all(unix, not(target_os = "macos"))))'.dependencies]
fontconfig = { path = "deps/fontconfig" }
2019-03-23 23:57:26 +03:00
[target.'cfg(all(unix, not(target_os = "macos")))'.dependencies]
openssl = "0.10"
2018-02-21 09:33:09 +03:00
[target.'cfg(target_os = "macos")'.dependencies]
openssl = { version = "0.10", features = ["vendored"] }
core-foundation = "0.7"
core-graphics = "0.19"
core-text = "15.0"
2018-02-21 09:33:09 +03:00
[workspace]
2019-02-23 07:59:03 +03:00
[profile.release]
opt-level = 3