Browse Source

Initial commit

wip
Titouan Rigoudy 9 years ago
commit
e53ad78bfb
3 changed files with 22 additions and 0 deletions
  1. +15
    -0
      .gitignore
  2. +4
    -0
      Cargo.toml
  3. +3
    -0
      src/main.rs

+ 15
- 0
.gitignore View File

@ -0,0 +1,15 @@
# Compiled files
*.o
*.so
*.rlib
*.dll
# Executables
*.exe
# Generated by Cargo
/target/
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here http://doc.crates.io/guide.html#cargotoml-vs-cargolock
# Cargo.lock

+ 4
- 0
Cargo.toml View File

@ -0,0 +1,4 @@
[package]
name = "solstice"
version = "0.1.0"
authors = ["letitz"]

+ 3
- 0
src/main.rs View File

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

Loading…
Cancel
Save