Initialize `mino` crate
This commit is contained in:
commit
58956c1983
|
@ -0,0 +1 @@
|
||||||
|
target/
|
|
@ -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"
|
|
@ -0,0 +1,4 @@
|
||||||
|
[workspace]
|
||||||
|
members = [
|
||||||
|
"mino"
|
||||||
|
]
|
|
@ -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}
|
|
@ -0,0 +1 @@
|
||||||
|
#![no_std]
|
Loading…
Reference in New Issue