diff options
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | Cargo.toml | 9 | ||||
-rw-r--r-- | LICENSE | 16 | ||||
-rw-r--r-- | README.md | 6 | ||||
-rw-r--r-- | src/main.rs | 3 |
5 files changed, 36 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..53eaa21 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/target +**/*.rs.bk diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..b50b41e --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "statstitute" +version = "0.1.0" +authors = ["Ben Morrison <ben@gbmor.dev>"] +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..b39f5cd --- /dev/null +++ b/LICENSE @@ -0,0 +1,16 @@ +/* + * Copyright (c) 2019 Ben Morrison <ben@gbmor.dev> + * + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * 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..4caca23 --- /dev/null +++ b/README.md @@ -0,0 +1,6 @@ +# statstitute + +A program to generate the information required by the [`Tilde Description Protocol`](http://protocol.club/~datagrok/beta-wiki/tdp.html). +This is aimed at social UNIX boxes referred to as `tildes`, but is created for [`tilde.institute`](https://tilde.institute). + + diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +} |