From effbdeed66e8de8e769b8ac069926ad1a9110e62 Mon Sep 17 00:00:00 2001 From: Katharina Fey Date: Sun, 14 Feb 2021 00:06:14 +0100 Subject: rstnode: refactoring server and client components into rst-core * Add an inbox/ outbox system to server components * Define a data flow from Request -> computation -> Update * Create simple handlers to call server or client code for requests --- games/rstnode/rst-client/Cargo.toml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'games/rstnode/rst-client/Cargo.toml') diff --git a/games/rstnode/rst-client/Cargo.toml b/games/rstnode/rst-client/Cargo.toml index 7b5155f8108c..281b44376902 100644 --- a/games/rstnode/rst-client/Cargo.toml +++ b/games/rstnode/rst-client/Cargo.toml @@ -8,14 +8,18 @@ authors = ["Bread Machine", "Katharina Fey "] [dependencies] rst-core = { path = "../rst-core" } +# async-quic = { path = "../async-quic" } cairo-rs = { version="0.8.0", features=["v1_16", "png", "svg"] } librsvg = { git = "https://gitlab.gnome.org/GNOME/librsvg.git", rev = "d34f570f" } -ggez = "0.6.0-rc0" +ggez = "0.6.0-rc1" mint = "0.5" # Required because ggez is trash svg = "0.9" +async-trait = "0.1" +async-std = { version = "1.0", features = ["unstable", "attributes"] } +chrono = { version = "0.4", features = ["serde"] } clap = "2.0" +tempfile = "*" tracing = "0.1" -tracing-subscriber = "0.2" -tempfile = "*" \ No newline at end of file +tracing-subscriber = "0.2" \ No newline at end of file -- cgit v1.2.3