Initialized Cargo project

main
Jef Roosens 2021-06-16 12:53:32 +02:00
parent 26703c12a3
commit a1e69e8149
Signed by: Jef Roosens
GPG Key ID: B580B976584B5F30
4 changed files with 1381 additions and 2 deletions

3
.gitignore vendored
View File

@ -6,8 +6,7 @@ target/
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
Cargo.lock
# Cargo.lock
# These are backup files generated by rustfmt
**/*.rs.bk

1367
Cargo.lock generated 100644

File diff suppressed because it is too large Load Diff

10
Cargo.toml 100644
View File

@ -0,0 +1,10 @@
[package]
name = "hilde"
version = "0.1.0"
authors = ["jjr <roosensjef@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rocket = "0.5.0-rc.1"

3
src/main.rs 100644
View File

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