Cargo.toml

This commit is contained in:
gbrochar 2020-12-10 19:52:08 +01:00
parent 8c5cb053e7
commit 2d25498769
2 changed files with 13 additions and 0 deletions

10
Cargo.toml Normal file
View File

@ -0,0 +1,10 @@
[package]
name = "rsrt_cpu"
version = "0.1.0"
authors = ["gbrochar <gaetanbrochard@protonmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
mat4 = "0.2.1"

3
src/main.rs Normal file
View File

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