diff --git a/display-server-tty/Cargo.toml b/display-server-tty/Cargo.toml
index 4d933da..3c5d783 100644
--- a/display-server-tty/Cargo.toml
+++ b/display-server-tty/Cargo.toml
@@ -1,11 +1,12 @@
 [package]
 authors = ["Michael Sippel <micha@fragmental.art>"]
-name = "display_server"
+name = "display-server-tty"
 version = "0.1.0"
 edition = "2018"
 
 [dependencies]
-nested = { path = "../../nested" }
+nested = { path = "../lib-nested-core" }
+nested-tty  = { path = "../lib-nested-tty" }
 termion = "1.5.5"
 cgmath = { version = "0.18.0", features = ["serde"] }
 serde = { version = "1.0", features = ["serde_derive"] }
diff --git a/pty-server/Cargo.toml b/pty-server/Cargo.toml
index 2b1ca1d..86e08e0 100644
--- a/pty-server/Cargo.toml
+++ b/pty-server/Cargo.toml
@@ -1,11 +1,12 @@
 [package]
 authors = ["Michael Sippel <micha@fragmental.art>"]
-name = "ansi_parser"
+name = "pty-server"
 version = "0.1.0"
 edition = "2018"
 
 [dependencies]
-nested = { path = "../../nested" }
+nested = { path = "../lib-nested-core" }
+nested-tty = { path = "../lib-nested-tty" }
 cgmath = { version = "0.18.0", features = ["serde"] }
 serde = { version = "1.0", features = ["serde_derive"] }
 bincode = "1.3.3"