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

relax some of the dep requirements

This commit is contained in:
Wez Furlong 2018-08-04 15:35:38 -07:00
parent efb9acdc84
commit 381e572700
2 changed files with 29 additions and 29 deletions

View File

@ -4,22 +4,22 @@ name = "wezterm"
version = "0.1.0"
[dependencies]
bitflags = "1.0.1"
clap = "2.30.0"
euclid = "0.17.0"
failure = "0.1.1"
failure_derive = "0.1.1"
futures = "0.1.18"
gl = "0.10.0"
harfbuzz-sys = "0.1.15"
libc = "0.2.36"
mio = "0.6.12"
mio-extras = "2.0.3"
palette = "0.2.1"
serde = "1.0.27"
serde_derive = "1.0.27"
toml = "0.4.5"
unicode-width = "0.1.4"
bitflags = "~1.0"
clap = "~2.30"
euclid = "~0.17"
failure = "~0.1"
failure_derive = "~0.1"
futures = "~0.1"
gl = "~0.10"
harfbuzz-sys = "~0.1"
libc = "~0.2"
mio = "~0.6"
mio-extras = "~2.0"
palette = "~0.2"
serde = "~1.0"
serde_derive = "~1.0"
toml = "~0.4"
unicode-width = "~0.1"
directories = "~1.0"
[dependencies.term]
@ -27,17 +27,17 @@ path = "term"
[target.'cfg(any(target_os = "android", all(unix, not(target_os = "macos"))))'.dependencies]
freetype = "0.3"
servo-fontconfig = "0.4.0"
egli = "0.4.0"
x11 = {version ="2.17.3", features = ["xlib_xcb"]}
servo-fontconfig = "~0.4"
egli = "~0.4"
x11 = {version ="~2.17", features = ["xlib_xcb"]}
[target.'cfg(any(target_os = "android", all(unix, not(target_os = "macos"))))'.dependencies.glium]
version = "0.20.0"
version = "~0.20"
default-features = false
features = []
[target.'cfg(all(unix, not(target_os = "macos")))'.dependencies.xcb]
version = "0.8.1"
version = "~0.8"
[target.'cfg(all(unix, not(target_os = "macos")))'.dependencies.xcb-util]
features = [
@ -45,10 +45,10 @@ features = [
"ewmh",
"keysyms",
]
version = "0.2.0"
version = "~0.2"
[target.'cfg(target_os = "macos")'.dependencies]
core-text = "9.2.0"
core-text = "~9.2"
[features]
debug-escape-sequences = ["term/debug-escape-sequences"]

View File

@ -4,12 +4,12 @@ name = "term"
version = "0.1.0"
[dependencies]
bitflags = "1.0.1"
failure = "0.1.1"
maplit = "1.0.1"
regex = "0.2.6"
serde = "1.0.27"
serde_derive = "1.0.27"
bitflags = "~1.0"
failure = "~0.1"
maplit = "~1.0"
regex = "~0.2"
serde = "~1.0"
serde_derive = "~1.0"
unicode-segmentation = "~1.2"
unicode-width = "~0.1"