From 04fec06214f4ec3461811529c6b4af1c2166fb71 Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Sun, 5 Apr 2020 18:29:19 -0400 Subject: [PATCH] Initial commit --- .gitignore | 8 ++++++++ Cargo.toml | 9 +++++++++ LICENSE | 10 ++++++++++ README.md | 7 +++++++ src/main.rs | 1 + 5 files changed, 35 insertions(+) create mode 100644 .gitignore create mode 100644 Cargo.toml create mode 100644 LICENSE create mode 100644 README.md create mode 100644 src/main.rs diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9e33f44 --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +/target + +# May wish to include this later since this is primarily a library, +# but ignoring it for early development +Cargo.lock + +# Backup files generated by rustfmt +**/*.rs.bk diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..f3a1755 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "duster" +version = "0.1.0" +authors = ["Tom Alexander "] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..5aec258 --- /dev/null +++ b/LICENSE @@ -0,0 +1,10 @@ +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH +REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY +AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, +INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM +LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR +OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THIS SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..029cb00 --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +# duster + +An implementation of the [LinkedIn fork of DustJS](https://www.dustjs.com/) written in rust. + +**NOT RECOMMENDED FOR PUBLIC USE** + +This code is available free and open source under the [0BSD](https://choosealicense.com/licenses/0bsd/), but it is a very early-stage project. You're welcome to use it, fork it, print it out and fold it into a hat, etc... but you will find that this project is not yet polished nor feature complete. While this repository uses the 0BSD license which does not require the inclusion of a copyright notice/text in any distribution, it depends on [nom](https://github.com/Geal/nom) which is under the MIT license and the Rust standard library which is [dual licensed](https://github.com/rust-lang/rust/issues/67014). diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..f328e4d --- /dev/null +++ b/src/main.rs @@ -0,0 +1 @@ +fn main() {}