Initialize `mino` crate

This commit is contained in:
tali 2022-12-13 13:54:17 -05:00
commit 58956c1983
5 changed files with 24 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
target/

7
Cargo.lock generated Normal file
View File

@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "mino"
version = "0.1.0"

4
Cargo.toml Normal file
View File

@ -0,0 +1,4 @@
[workspace]
members = [
"mino"
]

11
mino/Cargo.toml Normal file
View File

@ -0,0 +1,11 @@
[package]
name = "mino"
description = "Core datastructures for a tetris bot"
version = "0.1.0"
edition = "2021"
[features]
default = []
[dependencies]
# tracing = { version = "0.1", default-features = false}

1
mino/src/lib.rs Normal file
View File

@ -0,0 +1 @@
#![no_std]