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