First commit

This commit is contained in:
Timothy Warren 2019-10-09 14:45:22 -04:00
commit 5cdda1d2fa
3 changed files with 15 additions and 0 deletions

3
.gitignore vendored Normal file
View File

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

9
Cargo.toml Normal file
View File

@ -0,0 +1,9 @@
[package]
name = "rs-blog"
version = "0.1.0"
authors = ["Timothy Warren <tim@timshomepage.net>"]
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!");
}