From b51a93fc017e2e3ab171a48c5ea02792fe27347b Mon Sep 17 00:00:00 2001 From: Jason Travis Smith Date: Mon, 27 Jun 2016 18:22:52 -0400 Subject: [PATCH] Committing the current files prior to reformatting. --- .gitignore | 18 ++++++++++++++++-- Cargo.lock | 4 ++++ Cargo.toml | 8 ++++++++ 3 files changed, 28 insertions(+), 2 deletions(-) create mode 100644 Cargo.lock diff --git a/.gitignore b/.gitignore index d4f917d..48f68fb 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +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 diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..7516536 --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,4 @@ +[root] +name = "sigils" +version = "0.1.0" + diff --git a/Cargo.toml b/Cargo.toml index 8022d88..0563fdf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,3 +2,11 @@ name = "sigils" version = "0.1.0" authors = ["Jason Travis Smith "] +description = "A mathematics library." +license = "" +repository = "https://gitlab.com/CyberMages/sigils.git" +documentation = "" +keywords = ["sigils"] + + +[dependencies]