Committing the current files prior to reformatting.

This commit is contained in:
Jason Travis Smith 2016-06-27 18:22:25 -04:00
parent e52418d3bf
commit c655eca358
3 changed files with 26 additions and 2 deletions

19
.gitignore vendored
View File

@ -1,2 +1,17 @@
target
Cargo.lock
# Ignore swap files from text editors.
*.swp
# Ignore compiled files.
*.o
*.so
*.rlib
*.dll
*.exe
# Ignore files/directories generated by Cargo.
/target/
# 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

4
Cargo.lock generated Normal file
View File

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

View File

@ -2,3 +2,8 @@
name = "scribe"
version = "0.1.0"
authors = ["Jason Travis Smith <Jason@CyberMagesLLC.com>"]
description = "Handles logging."
license = ""
repository = "https://gitlab.com/CyberMages/scribe.git"
documentation = ""
keywords = ["scribe", "logging"]