This commit is contained in:
c0gent 2018-06-28 11:47:17 -07:00
commit c7165e9327
4 changed files with 34 additions and 0 deletions

25
.gitignore vendored Normal file
View File

@ -0,0 +1,25 @@
# Compiled files
*.o
*.so
*.rlib
*.dll
# Executables
*.exe
# Other
/*.png
# Generated by Cargo
Cargo.lock
**/Cargo.lock
/target/
**/target/
# My junk
/data
**/tmp
/src/junk
/bak

6
Cargo.toml Normal file
View File

@ -0,0 +1,6 @@
[package]
name = "hydra"
version = "0.1.0"
authors = ["c0gent <nsan1129@gmail.com>"]
[dependencies]

0
README.md Normal file
View File

3
src/main.rs Normal file
View File

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