-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e5b17fa
commit 7c867a3
Showing
7 changed files
with
3 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
[package] | ||
name = "shpool_pty" | ||
version = "0.3.0" | ||
version = "0.3.1" | ||
authors = ["Hika Hibariya <[email protected]>", "Ethan Pailes <[email protected]>"] | ||
repository = "https://github.com/ethanpailes/pty-rs" | ||
homepage = "https://github.com/ethanpailes/pty-rs" | ||
repository = "https://github.com/shell-pool/shpool_pty" | ||
homepage = "https://github.com/shell-pool/shpool_pty" | ||
license = "MIT" | ||
description = "Fork with new pseudo-terminal (PTY)" | ||
keywords = ["pty", "tty", "pseudo", "terminal", "fork"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
mod err; | ||
|
||
use libc; | ||
|
||
pub use self::err::DescriptorError; | ||
use std::ffi::CStr; | ||
use std::os::unix::io::RawFd; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
mod err; | ||
|
||
use libc; | ||
|
||
use descriptor::Descriptor; | ||
|
||
pub use self::err::{MasterError, Result}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
mod err; | ||
|
||
use descriptor::Descriptor; | ||
use libc; | ||
|
||
pub use self::err::{Result, SlaveError}; | ||
use std::ffi::CStr; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters