Initial commit

This commit is contained in:
cel 2022-11-01 21:31:55 +00:00 committed by cel 🌸
commit 1442d3821a
Signed by: cel
GPG Key ID: 48E29AF13B5F1349
8 changed files with 57 additions and 0 deletions

16
.gitignore vendored Normal file
View File

@ -0,0 +1,16 @@
# ---> Rust
# Generated by Cargo
# will have compiled files and executables
debug/
target/
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
Cargo.lock
# These are backup files generated by rustfmt
**/*.rs.bk
# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb

6
Cargo.toml Normal file
View File

@ -0,0 +1,6 @@
[workspace]
members = [
"cowgen",
"cowmic"
]

1
LICENSE.md Normal file
View File

@ -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.

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# cowmic
generates memes

9
cowgen/Cargo.toml Normal file
View File

@ -0,0 +1,9 @@
[package]
name = "cowgen"
version = "0.1.0"
authors = ["cel <cel@blos.sm>", "emilis <emilis@puff.place>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

8
cowgen/src/lib.rs Normal file
View File

@ -0,0 +1,8 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
let result = 2 + 2;
assert_eq!(result, 4);
}
}

11
cowmic/Cargo.toml Normal file
View File

@ -0,0 +1,11 @@
[package]
name = "cowmic"
version = "0.1.0"
authors = ["cel <cel@blos.sm>", "emilis <emilis@puff.place>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
cowgen = { path = "../cowgen" }

3
cowmic/src/main.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}