aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml25
1 files changed, 18 insertions, 7 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 0a8e040..e04239c 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -3,17 +3,28 @@ name = "graf_karto"
version = "0.1.1"
authors = ["Arne Dußin <arne.dussin@gmail.com>"]
edition = "2018"
+default-run = "client"
+
+[[bin]]
+name = "client"
+path = "src/client_main.rs"
+
+[[bin]]
+name = "server"
+path = "src/server_main.rs"
[dependencies]
+alga = "*"
+bincode = "*"
+clap = "*"
+float-cmp = "*"
+log = "*"
+nalgebra = { version = "*", features = ["serde-serialize"] }
+num-traits = "*"
+pretty_env_logger = "*"
raylib = "3.0.0"
ron = "*"
serde = "*"
-nalgebra = "*"
-alga = "*"
-num-traits = "*"
svgtypes = "*"
-xmltree = "*"
-pretty_env_logger = "*"
-log = "*"
thiserror = "*"
-float-cmp = "*" \ No newline at end of file
+xmltree = "*"