diff --git a/Cargo.toml b/Cargo.toml
index b3de67d..44403c7 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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",
 ]
 
diff --git a/pty-server/Cargo.toml b/srv-pty-capture/Cargo.toml
similarity index 93%
rename from pty-server/Cargo.toml
rename to srv-pty-capture/Cargo.toml
index 86e08e0..3453d45 100644
--- a/pty-server/Cargo.toml
+++ b/srv-pty-capture/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 authors = ["Michael Sippel <micha@fragmental.art>"]
-name = "pty-server"
+name = "srv-pty-capture"
 version = "0.1.0"
 edition = "2018"
 
diff --git a/pty-server/src/main.rs b/srv-pty-capture/src/main.rs
similarity index 99%
rename from pty-server/src/main.rs
rename to srv-pty-capture/src/main.rs
index 0e4d532..5d531ac 100644
--- a/pty-server/src/main.rs
+++ b/srv-pty-capture/src/main.rs
@@ -2,7 +2,7 @@
 
 use {
     cgmath::Point2,
-    nested::terminal::{TerminalAtom, TerminalStyle},
+    nested_tty::{TerminalAtom, TerminalStyle},
     std::{
         fs::File,
         io::{stdin, Read, Write},
diff --git a/display-server-tty/Cargo.toml b/srv-tty-output/Cargo.toml
similarity index 92%
rename from display-server-tty/Cargo.toml
rename to srv-tty-output/Cargo.toml
index 3c5d783..314e9f5 100644
--- a/display-server-tty/Cargo.toml
+++ b/srv-tty-output/Cargo.toml
@@ -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"
 
diff --git a/display-server-tty/src/main.rs b/srv-tty-output/src/main.rs
similarity index 97%
rename from display-server-tty/src/main.rs
rename to srv-tty-output/src/main.rs
index a3f52fc..46f6c6e 100644
--- a/display-server-tty/src/main.rs
+++ b/srv-tty-output/src/main.rs
@@ -1,6 +1,6 @@
 use {
     cgmath::{Point2, Vector2},
-    nested::terminal::{TerminalAtom, TerminalStyle},
+    nested_tty::{TerminalAtom, TerminalStyle},
     std::io::{stdout, Read, Write},
     termion::raw::IntoRawMode,
 };