From ee338faf9530a41529f093b632d93d4f1c625034 Mon Sep 17 00:00:00 2001 From: Caleb Jones Date: Thu, 29 Dec 2016 19:15:42 -0500 Subject: [PATCH] Rename the project to Ess and add Cargo metadata --- Cargo.toml | 7 ++++++- LICENSE | 11 +++++++++++ README.md | 4 ++++ 3 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 LICENSE create mode 100644 README.md diff --git a/Cargo.toml b/Cargo.toml index 7e92b66..47d05ab 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,11 @@ [package] -name = "sexp2" +name = "ess" version = "0.3.1" authors = ["Caleb Jones "] +description = "An s-expression parser targeted at language implementation." +repository = "https://github.com/porglezomp/ess" +readme = "README.md" +keywords = ["s-expression", "sexp", "s-exp", "parser"] +license = "Zlib" [dependencies] diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..059e6d2 --- /dev/null +++ b/LICENSE @@ -0,0 +1,11 @@ +Copyright (c) 2016 Caleb Jones + +This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source distribution. diff --git a/README.md b/README.md new file mode 100644 index 0000000..53aeda3 --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +# Ess + +Ess is a work-in-progress s-expression parser targeted at language implementation. +In particular, it provides source locations for all parsed expressions. -- 2.43.2