From 90e5bd65cadc22528083c7df122ff1f6b30d248e Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Wed, 31 Aug 2022 21:02:17 -0500 Subject: [PATCH] Initial commit --- .editorconfig | 10 ++++++++++ .gitattributes | 1 + .gitignore | 1 + Cargo.lock | 7 +++++++ Cargo.toml | 6 ++++++ rustfmt.toml | 1 + src/main.rs | 4 ++++ 7 files changed, 30 insertions(+) create mode 100644 .editorconfig create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 Cargo.lock create mode 100644 Cargo.toml create mode 100644 rustfmt.toml create mode 100644 src/main.rs diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..c6d39a8 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,10 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +[**.rs] +max_line_length = 79 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..383338e --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +Cargo.lock -diff diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ea8c4bf --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/target diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..90130f1 --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "dynk8s-provisioner" +version = "0.1.0" diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..b984796 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "dynk8s-provisioner" +version = "0.1.0" +edition = "2021" + +[dependencies] diff --git a/rustfmt.toml b/rustfmt.toml new file mode 100644 index 0000000..a1ffd27 --- /dev/null +++ b/rustfmt.toml @@ -0,0 +1 @@ +max_width = 79 diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..b9ec0e0 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,4 @@ +#[doc(hidden)] +fn main() { + println!("Hello, world!"); +}