1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-25 21:07:39 +03:00

termwiz: prep for crates.io

This commit is contained in:
Wez Furlong 2022-04-07 07:27:54 -07:00
parent f9382d067e
commit d0d23d6c46
5 changed files with 7 additions and 7 deletions

2
Cargo.lock generated
View File

@ -4025,7 +4025,7 @@ checksum = "507e9898683b6c43a9aa55b64259b721b52ba226e0f3779137e50ad114a4c90b"
[[package]]
name = "termwiz"
version = "0.15.0"
version = "0.16.0"
dependencies = [
"anyhow",
"base64",

View File

@ -9,4 +9,4 @@ license = "MIT"
documentation = "https://docs.rs/tabout"
[dependencies]
termwiz = { path = "../termwiz", version="0.15"}
termwiz = { path = "../termwiz", version="0.16"}

View File

@ -39,6 +39,6 @@ k9 = "0.11.0"
unicode-normalization = "0.1"
[dependencies.termwiz]
version = "0.15"
version = "0.16"
path = "../termwiz"
features = ["use_image"]

View File

@ -1,7 +1,7 @@
[package]
authors = ["Wez Furlong"]
name = "termwiz"
version = "0.15.0"
version = "0.16.0"
edition = "2018"
repository = "https://github.com/wez/wezterm"
description = "Terminal Wizardry for Unix and Windows"
@ -37,8 +37,8 @@ thiserror = "1.0"
unicode-segmentation = "1.8"
ucd-trie = "0.1"
vtparse = { version="0.6", path="../vtparse" }
wezterm-bidi = { path = "../bidi" }
wezterm-color-types = { path = "../color-types" }
wezterm-bidi = { path = "../bidi", version="0.1" }
wezterm-color-types = { path = "../color-types", version="0.1" }
[features]
widgets = ["cassowary", "fnv"]

View File

@ -48,5 +48,5 @@ rstest = "0.12"
shell-words = "1.1"
smol-potat = "1.1.2"
structopt = "0.3"
termwiz = { version = "0.15", path = "../termwiz" }
termwiz = { version = "0.16", path = "../termwiz" }
whoami = "1.1"