~gbmor/clinte

d64124e97bdf26169f20e98fbdf1af934b265b74 — Ben Morrison 3 years ago 0e199a8
init
4 files changed, 20 insertions(+), 0 deletions(-)

A .gitignore
A Cargo.lock
A Cargo.toml
A src/main.rs
A .gitignore => .gitignore +2 -0
@@ 0,0 1,2 @@
/target
**/*.rs.bk

A Cargo.lock => Cargo.lock +5 -0
@@ 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"

A Cargo.toml => Cargo.toml +9 -0
@@ 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]

A src/main.rs => src/main.rs +4 -0
@@ 0,0 1,4 @@
fn main() {
    println!("clinte-0.1-dev");
    println!("a community notices system");
}