Crates.io | pseudoterm |
lib.rs | pseudoterm |
version | 0.1.1 |
source | src |
created_at | 2018-10-17 17:52:58.398051 |
updated_at | 2018-10-21 19:28:18.607351 |
description | Low-level library for creating PTYs |
homepage | |
repository | |
max_upload_size | |
id | 91186 |
size | 19,097 |
Low-level library for creating PTYs and getting related properties. Aimed to be cross platform, and so far has Unix and Redox OS support.
I know there are lots of crates for opening PTYs, but I really wanted to make my own.
Key features of this one:
See the examples/
directory.
If you've seen the docs, you'll notice there are stuff like TermiosSetter
and
WinsizeSetter
. This is a part of the design that makes Redox OS support
special. In redox, when setting the window size you need to do the following:
What pseudoterm does is let you get/set without opening/closing the file each time.