From 7f21946126a24c27a324779823a3413679f177a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustav=20S=C3=B6rn=C3=A4s?= Date: Sat, 30 Jan 2021 20:19:27 +0100 Subject: add pong --- pong/Cargo.toml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 pong/Cargo.toml (limited to 'pong/Cargo.toml') diff --git a/pong/Cargo.toml b/pong/Cargo.toml new file mode 100644 index 0000000..8e8cace --- /dev/null +++ b/pong/Cargo.toml @@ -0,0 +1,14 @@ +[package] +name = "pong" +version = "0.1.0" +authors = ["Gustav Sörnäs "] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +tihdy = { path = ".."} +tihdy_derive = { path = "../tihdy_derive" } + +macroquad = "0.2" +tokio = { version = "1", features = ["rt", "rt-multi-thread"] } -- cgit v1.2.1 From 349055ef2533bf3268f37d3c04e5adb84814f50a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustav=20S=C3=B6rn=C3=A4s?= Date: Sat, 30 Jan 2021 23:24:05 +0100 Subject: remove tokio from pong --- pong/Cargo.toml | 1 - 1 file changed, 1 deletion(-) (limited to 'pong/Cargo.toml') diff --git a/pong/Cargo.toml b/pong/Cargo.toml index 8e8cace..99b2d36 100644 --- a/pong/Cargo.toml +++ b/pong/Cargo.toml @@ -11,4 +11,3 @@ tihdy = { path = ".."} tihdy_derive = { path = "../tihdy_derive" } macroquad = "0.2" -tokio = { version = "1", features = ["rt", "rt-multi-thread"] } -- cgit v1.2.1 From 2f32aa0f1848f937992254fd9a610264784aefbd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustav=20S=C3=B6rn=C3=A4s?= Date: Sun, 31 Jan 2021 09:55:40 +0100 Subject: thin lto --- pong/Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) (limited to 'pong/Cargo.toml') diff --git a/pong/Cargo.toml b/pong/Cargo.toml index 99b2d36..acf7d67 100644 --- a/pong/Cargo.toml +++ b/pong/Cargo.toml @@ -6,6 +6,9 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +[profile.release] +lto = "thin" + [dependencies] tihdy = { path = ".."} tihdy_derive = { path = "../tihdy_derive" } -- cgit v1.2.1