commit dd52b565483190c6e6da20a94ccfe11a72a35f65 Author: Lukas Kalbertodt Date: Thu Apr 29 17:23:54 2021 +0200 Initial commit with empty Cargo project diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..96ef6c0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/target +Cargo.lock diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..ba3ef96 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "confique" +version = "0.1.0" +authors = ["Lukas Kalbertodt "] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 0000000..e69de29