Committing the current files prior to reformatting.

This commit is contained in:
Jason Travis Smith 2016-06-27 18:22:52 -04:00
parent 449ef9a149
commit b51a93fc01
3 changed files with 28 additions and 2 deletions

18
.gitignore vendored
View File

@ -1,3 +1,17 @@
target # Ignore swap files from text editors.
Cargo.lock
*.swp *.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 = "sigils"
version = "0.1.0"

View File

@ -2,3 +2,11 @@
name = "sigils" name = "sigils"
version = "0.1.0" version = "0.1.0"
authors = ["Jason Travis Smith <Jason@CyberMagesLLC.com>"] authors = ["Jason Travis Smith <Jason@CyberMagesLLC.com>"]
description = "A mathematics library."
license = ""
repository = "https://gitlab.com/CyberMages/sigils.git"
documentation = ""
keywords = ["sigils"]
[dependencies]