From fbffb0f6eae0b406f59a5f0e029cef95c2730bc6 Mon Sep 17 00:00:00 2001 From: Felix Date: Mon, 26 Apr 2021 18:38:44 +0200 Subject: [PATCH] rename main --- README.md | 9 +++++---- src/{bin/ckconf.rs => main.rs} | 0 2 files changed, 5 insertions(+), 4 deletions(-) rename src/{bin/ckconf.rs => main.rs} (100%) diff --git a/README.md b/README.md index b4b1c7a..4160213 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,14 @@ # gayconf.rs -A simple config file parsing library. See `test.conf` for all features. +A cursed configuration language. See `test.conf` for an example. -Please note this is literally my first Rust project, so the code is almost certainly horrible -and shouldn't be used in any real life project. +**Disclaimer**: If the words _turing complete configuration_ aren't enough of a screaming +red flag to scare you away from this project already, pleast note that this is literally my +first Rust project so the code is almost certainly horrible and shouldn't be used anywhere. ## Usage -See `bin/ckconf.rs`, which is also the command line version. +See `src/main.rs`, which is also the command line version. ## License diff --git a/src/bin/ckconf.rs b/src/main.rs similarity index 100% rename from src/bin/ckconf.rs rename to src/main.rs