Initialize a cargo binary app

This commit is contained in:
R Tyler Croy 2019-11-15 13:45:40 -08:00
parent e7114d9383
commit 34dfa0df45
No known key found for this signature in database
GPG Key ID: E5C92681BEF6CEA2
2 changed files with 12 additions and 0 deletions

9
Cargo.toml Normal file
View File

@ -0,0 +1,9 @@
[package]
name = "deploydb"
version = "0.1.0"
authors = ["R. Tyler Croy <rtyler@brokenco.de>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

3
src/main.rs Normal file
View File

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