diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8130c3a --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +debug/ +target/ diff --git a/CODEOWNERS b/CODEOWNERS new file mode 100644 index 0000000..ad1cf58 --- /dev/null +++ b/CODEOWNERS @@ -0,0 +1 @@ +* @edg-l @igaray @azteca1998 @fmoletta @pefontana diff --git a/Cargo.toml b/Cargo.toml index a04a292..166219f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,4 +7,4 @@ members = [ # Explicitly set the resolver to the default for edition >= 2021 # https://doc.rust-lang.org/edition-guide/rust-2021/default-cargo-resolver.html -resolver = "2" \ No newline at end of file +resolver = "2" diff --git a/rust-toolchain.toml b/rust-toolchain.toml new file mode 100644 index 0000000..936613c --- /dev/null +++ b/rust-toolchain.toml @@ -0,0 +1,4 @@ +[toolchain] +channel = "1.78.0" +components = ["rustfmt", "clippy"] +profile = "minimal"