fix dependencies in pty-server & display-server-tty

This commit is contained in:
Michael Sippel 2024-02-10 23:21:11 +01:00
parent 647a5d77b6
commit 73d457ba24
Signed by: senvas
GPG key ID: F96CF119C34B64A6
2 changed files with 6 additions and 4 deletions

View file

@ -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"] }

View file

@ -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"