From 57b629702496773c2b2a77dd13074ff708449ba6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?cel=20=F0=9F=8C=B8?= Date: Tue, 1 Nov 2022 21:48:48 +0000 Subject: [PATCH] Initial Commit --- Cargo.toml | 6 ++++++ LICENSE.md | 1 + cowgen/Cargo.toml | 9 +++++++++ cowgen/src/lib.rs | 8 ++++++++ cowmic/Cargo.toml | 11 +++++++++++ cowmic/src/main.rs | 3 +++ 6 files changed, 38 insertions(+) create mode 100644 Cargo.toml create mode 100644 LICENSE.md create mode 100644 cowgen/Cargo.toml create mode 100644 cowgen/src/lib.rs create mode 100644 cowmic/Cargo.toml create mode 100644 cowmic/src/main.rs diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..98e5e8e --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,6 @@ +[workspace] + +members = [ + "cowgen", + "cowmic" +] diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..b1e9b14 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1 @@ +You do not have, nor can you ever acquire the right to use, copy or distribute this software; Should you use this software for any purpose, or copy and distribute it to anyone or in any manner, you are breaking the laws of whatever soi-disant jurisdiction, and you promise to continue doing so for the indefinite future. In any case, please always: read and understand any software; verify any PGP signatures that you use - for any purpose. diff --git a/cowgen/Cargo.toml b/cowgen/Cargo.toml new file mode 100644 index 0000000..e6a101d --- /dev/null +++ b/cowgen/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "cowgen" +version = "0.1.0" +authors = ["cel ", "emilis "] +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/cowgen/src/lib.rs b/cowgen/src/lib.rs new file mode 100644 index 0000000..1b4a90c --- /dev/null +++ b/cowgen/src/lib.rs @@ -0,0 +1,8 @@ +#[cfg(test)] +mod tests { + #[test] + fn it_works() { + let result = 2 + 2; + assert_eq!(result, 4); + } +} diff --git a/cowmic/Cargo.toml b/cowmic/Cargo.toml new file mode 100644 index 0000000..426d961 --- /dev/null +++ b/cowmic/Cargo.toml @@ -0,0 +1,11 @@ +[package] +name = "cowmic" +version = "0.1.0" +authors = ["cel ", "emilis "] +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +cowgen = { path = "../cowgen" } + diff --git a/cowmic/src/main.rs b/cowmic/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/cowmic/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}