Use temporary fork of termion for now

Because crates.io require each package in the dependency to be published on
crates.io
This commit is contained in:
henil 2021-02-10 17:26:13 +05:30
parent bf02a7df29
commit fb701afb0f
2 changed files with 6 additions and 4 deletions

7
Cargo.lock generated
View file

@ -1616,9 +1616,10 @@ dependencies = [
]
[[package]]
name = "termion"
name = "termion_temporary_zellij_fork"
version = "1.6.0"
source = "git+https://gitlab.com/TheLostLambda/termion.git#4757d1fbb6067383737d41e5e32854c035a281a8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "65175afb01727f72d690bc8b2a2ac411c0243ec43988b7bd96d428301197bed0"
dependencies = [
"libc",
"numtoa",
@ -2248,7 +2249,7 @@ dependencies = [
"structopt",
"strum",
"strum_macros",
"termion",
"termion_temporary_zellij_fork",
"termios",
"toml",
"unicode-truncate",

View file

@ -20,7 +20,8 @@ serde_yaml = "0.8"
signal-hook = "0.1.10"
strip-ansi-escapes = "0.1.0"
structopt = "0.3"
termion = { git = "https://gitlab.com/TheLostLambda/termion.git", version = "1.6.0", features = ["serde"] }
# termion = { git = "https://gitlab.com/TheLostLambda/termion.git", version = "1.6.0", features = ["serde"] }
termion = { package = "termion_temporary_zellij_fork" , version = "1.6.0", features = ["serde"]}
termios = "0.3"
unicode-truncate = "0.2.0"
unicode-width = "0.1.8"