Initial commit

master
Tom Alexander 4 years ago
commit 04fec06214
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE

8
.gitignore vendored

@ -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

@ -0,0 +1,9 @@
[package]
name = "duster"
version = "0.1.0"
authors = ["Tom Alexander <tom@fizz.buzz>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

@ -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.

@ -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).

@ -0,0 +1 @@
fn main() {}
Loading…
Cancel
Save