Adding a README and removing the Cargo.lock file.

The Cargo.lock file is not needed for libraries.
This commit is contained in:
Myrddin Dundragon 2016-08-24 12:21:53 -04:00
parent 13a2cee826
commit 76051cc2c2
3 changed files with 10 additions and 5 deletions

2
.gitignore vendored
View File

@ -14,4 +14,4 @@
# Remove Cargo.lock from gitignore if creating an executable, # Remove Cargo.lock from gitignore if creating an executable,
# leave it for libraries. # leave it for libraries.
# More information here: http://doc.crates.io/guide.html#cargotoml-vs-cargolock # More information here: http://doc.crates.io/guide.html#cargotoml-vs-cargolock
#Cargo.lock Cargo.lock

4
Cargo.lock generated
View File

@ -1,4 +0,0 @@
[root]
name = "scribe"
version = "0.2.0"

9
README.md Normal file
View File

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