Initialize "fish" crate

This commit is contained in:
tali 2022-12-15 18:26:51 -05:00
parent aee42c7ddf
commit 0190bdce66
4 changed files with 19 additions and 0 deletions

7
Cargo.lock generated
View File

@ -8,6 +8,13 @@ version = "1.0.66"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "216261ddc8289130e551ddcd5ce8a064710c0d064a4d2895c67151c92b5443f6"
[[package]]
name = "fish"
version = "0.1.0"
dependencies = [
"mino",
]
[[package]]
name = "itoa"
version = "1.0.4"

View File

@ -2,4 +2,5 @@
members = [
"mino",
"mino-code-gen",
"fish",
]

8
fish/Cargo.toml Normal file
View File

@ -0,0 +1,8 @@
[package]
name = "fish"
description = "Bot?"
version = "0.1.0"
edition = "2021"
[dependencies]
mino = { path = "../mino" }

3
fish/src/lib.rs Normal file
View File

@ -0,0 +1,3 @@
#![no_std]
extern crate alloc;