Skip to content

Commit

Permalink
tmux: add tmux-cc crate
Browse files Browse the repository at this point in the history
This crate knows how to parse data returned from the `tmux -CC` protocol.

refs: #336
  • Loading branch information
wez committed Nov 20, 2020
1 parent 6716d40 commit ec55a23
Show file tree
Hide file tree
Showing 5 changed files with 605 additions and 6 deletions.
146 changes: 141 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace]
members = ["wezterm-mux-server", "wezterm", "wezterm-gui", "strip-ansi-escapes"]
members = ["wezterm-mux-server", "wezterm", "wezterm-gui", "strip-ansi-escapes", "tmux-cc"]

[profile.release]
opt-level = 3
17 changes: 17 additions & 0 deletions tmux-cc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[package]
name = "tmux-cc"
version = "0.1.0"
authors = ["Wez Furlong <[email protected]>"]
edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "1.0"
log = "0.4"
pest = "2.1"
pest_derive = "2.1"

[dev-dependencies]
pretty_env_logger = "0.4"
pretty_assertions = "0.6"
Loading

0 comments on commit ec55a23

Please sign in to comment.