diff options
| author | Arne Dußin | 2021-01-12 09:30:53 +0100 |
|---|---|---|
| committer | Arne Dußin | 2021-01-12 09:31:21 +0100 |
| commit | b58e965327deef14d6414a912bb6698c6f745ce9 (patch) | |
| tree | 053fcad42862f49cf4ff8d2c245d61cceda055eb /Cargo.toml | |
| parent | b1179849c28e50c39ac3c94af9dda86ee24beca0 (diff) | |
| download | graf_karto-b58e965327deef14d6414a912bb6698c6f745ce9.tar.gz graf_karto-b58e965327deef14d6414a912bb6698c6f745ce9.zip | |
Change to client-server structure
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -4,6 +4,17 @@ version = "0.1.1" authors = ["Arne Dußin <arne.dussin@gmail.com>"] edition = "2018" +[build] +target = "client" + +[[bin]] +name = "client" +path = "src/client.rs" + +[[bin]] +name = "server" +path = "src/server.rs" + [dependencies] raylib = "3.0.0" ron = "*" @@ -16,4 +27,4 @@ xmltree = "*" pretty_env_logger = "*" log = "*" thiserror = "*" -float-cmp = "*"
\ No newline at end of file +float-cmp = "*" |
