From 0190bdce66185d2d1a1872c7c3df4e95da6f5bbd Mon Sep 17 00:00:00 2001 From: tali Date: Thu, 15 Dec 2022 18:26:51 -0500 Subject: [PATCH] Initialize "fish" crate --- Cargo.lock | 7 +++++++ Cargo.toml | 1 + fish/Cargo.toml | 8 ++++++++ fish/src/lib.rs | 3 +++ 4 files changed, 19 insertions(+) create mode 100644 fish/Cargo.toml create mode 100644 fish/src/lib.rs diff --git a/Cargo.lock b/Cargo.lock index 44f1862..1d5651e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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" diff --git a/Cargo.toml b/Cargo.toml index 9a6de7e..8e8d091 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,4 +2,5 @@ members = [ "mino", "mino-code-gen", + "fish", ] diff --git a/fish/Cargo.toml b/fish/Cargo.toml new file mode 100644 index 0000000..eb856ca --- /dev/null +++ b/fish/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "fish" +description = "Bot?" +version = "0.1.0" +edition = "2021" + +[dependencies] +mino = { path = "../mino" } diff --git a/fish/src/lib.rs b/fish/src/lib.rs new file mode 100644 index 0000000..6ec9ef6 --- /dev/null +++ b/fish/src/lib.rs @@ -0,0 +1,3 @@ +#![no_std] + +extern crate alloc;