This commit is contained in:
Ben Morrison 2019-08-27 00:17:02 -04:00
parent 0e199a8bd1
commit d64124e97b
Signed by untrusted user: gbmor
GPG Key ID: 8F192E4720BB0DAC
4 changed files with 20 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
/target
**/*.rs.bk

5
Cargo.lock generated Normal file
View File

@ -0,0 +1,5 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
[[package]]
name = "clinte"
version = "0.1.0"

9
Cargo.toml Normal file
View File

@ -0,0 +1,9 @@
[package]
name = "clinte"
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]

4
src/main.rs Normal file
View File

@ -0,0 +1,4 @@
fn main() {
println!("clinte-0.1-dev");
println!("a community notices system");
}