Initial empty binary crate

This commit is contained in:
Jack Grigg 2019-10-06 16:43:27 +11:00
commit 60dc6da4dc
No known key found for this signature in database
GPG key ID: 9E8255172BBF9898
4 changed files with 18 additions and 0 deletions

2
.gitignore vendored Normal file
View file

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

6
Cargo.lock generated Normal file
View file

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

7
Cargo.toml Normal file
View file

@ -0,0 +1,7 @@
[package]
name = "age"
version = "0.0.0"
authors = ["Jack Grigg <thestr4d@gmail.com>"]
edition = "2018"
[dependencies]

3
src/main.rs Normal file
View file

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}