1
Fork 0

Initial commit! 🎉

This commit is contained in:
Bauke 2022-04-06 14:29:45 +02:00
commit 763a55bab8
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
3 changed files with 25 additions and 0 deletions

14
.gitignore vendored Normal file
View File

@ -0,0 +1,14 @@
# Generated by Cargo
# will have compiled files and executables
debug/
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
# These are backup files generated by rustfmt
**/*.rs.bk
# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb

9
Cargo.toml Normal file
View File

@ -0,0 +1,9 @@
# https://doc.rust-lang.org/cargo/reference/manifest.html
[package]
name = "leetcode"
version = "0.0.0"
edition = "2021"
[lib]
path = "source/lib.rs"

2
rustfmt.toml Normal file
View File

@ -0,0 +1,2 @@
max_width = 80
tab_spaces = 2