project: add Cargo project files
Those files were generated using `cargo init pathtracer`.
This commit is contained in:
commit
35626278d1
10
.gitignore
vendored
Normal file
10
.gitignore
vendored
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
/target
|
||||||
|
**/*.rs.bk
|
||||||
|
|
||||||
|
|
||||||
|
#Added by cargo
|
||||||
|
#
|
||||||
|
#already existing elements are commented out
|
||||||
|
|
||||||
|
#/target
|
||||||
|
#**/*.rs.bk
|
13
Cargo.toml
Normal file
13
Cargo.toml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
[package]
|
||||||
|
name = "pathtracer"
|
||||||
|
version = "0.1.0"
|
||||||
|
authors = [
|
||||||
|
"Bruno BELANYI <brunobelanyi@gmail.com>",
|
||||||
|
"Antoine Martin <antoine97.martin@gmail.com>"
|
||||||
|
]
|
||||||
|
edition = "2018"
|
||||||
|
description = "A pathtracer written in Rust"
|
||||||
|
|
||||||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
[dependencies]
|
3
src/main.rs
Normal file
3
src/main.rs
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
fn main() {
|
||||||
|
println!("Hello, world!");
|
||||||
|
}
|
Loading…
Reference in a new issue