From 76051cc2c2d578fe5e05be7e03a7f63ee4aec980 Mon Sep 17 00:00:00 2001 From: Jason Travis Smith Date: Wed, 24 Aug 2016 12:21:53 -0400 Subject: [PATCH] Adding a README and removing the Cargo.lock file. The Cargo.lock file is not needed for libraries. --- .gitignore | 2 +- Cargo.lock | 4 ---- README.md | 9 +++++++++ 3 files changed, 10 insertions(+), 5 deletions(-) delete mode 100644 Cargo.lock create mode 100644 README.md diff --git a/.gitignore b/.gitignore index 48f68fb..3853ea9 100644 --- a/.gitignore +++ b/.gitignore @@ -14,4 +14,4 @@ # Remove Cargo.lock from gitignore if creating an executable, # leave it for libraries. # More information here: http://doc.crates.io/guide.html#cargotoml-vs-cargolock -#Cargo.lock +Cargo.lock diff --git a/Cargo.lock b/Cargo.lock deleted file mode 100644 index 66cad88..0000000 --- a/Cargo.lock +++ /dev/null @@ -1,4 +0,0 @@ -[root] -name = "scribe" -version = "0.2.0" - diff --git a/README.md b/README.md new file mode 100644 index 0000000..f95dd4a --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +# Scribe # +This is a Rust logging system. It is the base that all libraries +and executables can use to log messages. The STD library is not required +but can be used as a feature of this library. + + +## External Logger ## +You can create an external logger by implementing the Logger trait and +calling 'set_logger'.