rename pty&tty servers
This commit is contained in:
parent
cdf03c9aae
commit
ab51ea5d3d
5 changed files with 9 additions and 5 deletions
|
@ -2,9 +2,13 @@
|
|||
members = [
|
||||
"lib-nested-core",
|
||||
"lib-nested-tty",
|
||||
|
||||
"srv-tty-output",
|
||||
"srv-pty-capture",
|
||||
|
||||
"examples/tty-01-hello",
|
||||
"examples/tty-02-digit",
|
||||
"examples/tty-03-string",
|
||||
"examples/tty-04-posint"
|
||||
"examples/tty-04-posint",
|
||||
]
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
authors = ["Michael Sippel <micha@fragmental.art>"]
|
||||
name = "pty-server"
|
||||
name = "srv-pty-capture"
|
||||
version = "0.1.0"
|
||||
edition = "2018"
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
use {
|
||||
cgmath::Point2,
|
||||
nested::terminal::{TerminalAtom, TerminalStyle},
|
||||
nested_tty::{TerminalAtom, TerminalStyle},
|
||||
std::{
|
||||
fs::File,
|
||||
io::{stdin, Read, Write},
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
authors = ["Michael Sippel <micha@fragmental.art>"]
|
||||
name = "display-server-tty"
|
||||
name = "srv-tty-output"
|
||||
version = "0.1.0"
|
||||
edition = "2018"
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
use {
|
||||
cgmath::{Point2, Vector2},
|
||||
nested::terminal::{TerminalAtom, TerminalStyle},
|
||||
nested_tty::{TerminalAtom, TerminalStyle},
|
||||
std::io::{stdout, Read, Write},
|
||||
termion::raw::IntoRawMode,
|
||||
};
|
Loading…
Reference in a new issue