mirror of
https://github.com/wez/wezterm.git
synced 2024-11-23 23:21:08 +03:00
1a883a40e9
I wanted to see how much work remains to enable iterm2 image display; one of the blockers was a limit in the size of the buffer in the vte crate, which has been removed in my fork of vte. As part of testing our ability to absorb that data, I found a couple of issues with applying the image cells to the display, so this commit also takes care of that. We still don't have code to connect the cell image data to the opengl render layer.
50 lines
940 B
TOML
50 lines
940 B
TOML
[package]
|
|
authors = ["Wez Furlong"]
|
|
name = "termwiz"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
base64 = "~0.9"
|
|
bitflags = "~1.0"
|
|
cassowary = "~0.3"
|
|
derive_builder = "~0.5"
|
|
failure = "~0.1"
|
|
fnv = "~1.0"
|
|
image = "~0.19"
|
|
libc = "~0.2"
|
|
memmem = "~0.1"
|
|
num = "~0.2"
|
|
num-traits = "~0.2"
|
|
ordered-float = "~0.5"
|
|
palette = "~0.4"
|
|
regex = "~0.2"
|
|
semver = "0.9"
|
|
serde = {version="~1.0", features = ["rc"]}
|
|
serde_derive = "~1.0"
|
|
smallvec = "~0.6"
|
|
terminfo = "~0.6"
|
|
unicode-segmentation = "~1.2"
|
|
unicode-width = "~0.1"
|
|
|
|
# https://github.com/jwilm/vte/pull/20
|
|
vte = { git = "https://github.com/wez/vte", branch="oscbigbuf" }
|
|
|
|
[dev-dependencies]
|
|
bincode = "1.1"
|
|
|
|
[dependencies.num-derive]
|
|
features = ["full-syntax"]
|
|
version = "~0.2"
|
|
[target."cfg(unix)".dependencies]
|
|
signal-hook = "~0.1"
|
|
termios = "~0.3"
|
|
[target."cfg(windows)".dependencies.winapi]
|
|
features = [
|
|
"winuser",
|
|
"consoleapi",
|
|
"handleapi",
|
|
"fileapi",
|
|
]
|
|
version = "~0.3"
|