rename pty&tty servers

This commit is contained in:
Michael Sippel 2024-06-05 02:16:09 +02:00
parent cdf03c9aae
commit ab51ea5d3d
Signed by: senvas
GPG key ID: F96CF119C34B64A6
5 changed files with 9 additions and 5 deletions

View file

@ -2,9 +2,13 @@
members = [ members = [
"lib-nested-core", "lib-nested-core",
"lib-nested-tty", "lib-nested-tty",
"srv-tty-output",
"srv-pty-capture",
"examples/tty-01-hello", "examples/tty-01-hello",
"examples/tty-02-digit", "examples/tty-02-digit",
"examples/tty-03-string", "examples/tty-03-string",
"examples/tty-04-posint" "examples/tty-04-posint",
] ]

View file

@ -1,6 +1,6 @@
[package] [package]
authors = ["Michael Sippel <micha@fragmental.art>"] authors = ["Michael Sippel <micha@fragmental.art>"]
name = "pty-server" name = "srv-pty-capture"
version = "0.1.0" version = "0.1.0"
edition = "2018" edition = "2018"

View file

@ -2,7 +2,7 @@
use { use {
cgmath::Point2, cgmath::Point2,
nested::terminal::{TerminalAtom, TerminalStyle}, nested_tty::{TerminalAtom, TerminalStyle},
std::{ std::{
fs::File, fs::File,
io::{stdin, Read, Write}, io::{stdin, Read, Write},

View file

@ -1,6 +1,6 @@
[package] [package]
authors = ["Michael Sippel <micha@fragmental.art>"] authors = ["Michael Sippel <micha@fragmental.art>"]
name = "display-server-tty" name = "srv-tty-output"
version = "0.1.0" version = "0.1.0"
edition = "2018" edition = "2018"

View file

@ -1,6 +1,6 @@
use { use {
cgmath::{Point2, Vector2}, cgmath::{Point2, Vector2},
nested::terminal::{TerminalAtom, TerminalStyle}, nested_tty::{TerminalAtom, TerminalStyle},
std::io::{stdout, Read, Write}, std::io::{stdout, Read, Write},
termion::raw::IntoRawMode, termion::raw::IntoRawMode,
}; };