structure

This commit is contained in:
Evan Pratten 2021-09-20 10:57:26 -04:00
parent deacfbf09d
commit f6dfd7e4de
6 changed files with 35 additions and 0 deletions

2
Cargo.toml Normal file
View File

@ -0,0 +1,2 @@
[workspace]
members = ["./game", "./wrapper"]

10
game/Cargo.toml Normal file
View File

@ -0,0 +1,10 @@
[package]
name = "game"
publish = false
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
cgmath = "0.18"

5
game/src/lib.rs Normal file
View File

@ -0,0 +1,5 @@
/// The game entrypoint
pub fn game_begin() {
}

10
wrapper/Cargo.toml Normal file
View File

@ -0,0 +1,10 @@
[package]
name = "wrapper"
publish = false
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
game = { version = "0.1", path = "../game"}

3
wrapper/README.md Normal file
View File

@ -0,0 +1,3 @@
# Ignore this
This crate exists to wrap the `game` lib crate. This is just a little workaround to make the Rust compiler better cache files when developing the game.

5
wrapper/src/main.rs Normal file
View File

@ -0,0 +1,5 @@
use game::game_begin;
fn main() {
game_begin();
}