diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..606f7a0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,12 @@ +# 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 + diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..120a9bf --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "jiji" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +eframe = "0.26.2" diff --git a/README.md b/README.md new file mode 100644 index 0000000..ffc994d --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# Jiji + +A simple discord client aimed at lightness \ No newline at end of file diff --git a/assets/icon.png b/assets/icon.png new file mode 100644 index 0000000..8b221c7 Binary files /dev/null and b/assets/icon.png differ diff --git a/assets/source.png b/assets/source.png new file mode 100644 index 0000000..70fda00 Binary files /dev/null and b/assets/source.png differ