Skip to content

Commit 297ed6f

Browse files
committed
Initial version
0 parents  commit 297ed6f

File tree

6 files changed

+874
-0
lines changed

6 files changed

+874
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
2+
/target/
3+
**/*.rs.bk

Cargo.lock

Lines changed: 342 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[package]
2+
name = "pty-for-each"
3+
version = "0.1.0"
4+
authors = ["Dan Aloni <[email protected]>"]
5+
6+
[dependencies]
7+
log = "0.3"
8+
env_logger = "0.4"
9+
libc = "0.2"
10+
errno = "0.2"
11+
vte = "0.3.2"
12+
regex = "*"
13+
termion = "1.5.1"
14+
structopt = "0.1.7"
15+
structopt-derive = "0.1.6"

0 commit comments

Comments
 (0)