diff --git a/.cargo/config.toml b/.cargo/config.toml new file mode 100644 index 0000000..5ccae92 --- /dev/null +++ b/.cargo/config.toml @@ -0,0 +1,2 @@ +[alias] +lint = "clippy --workspace --all-targets --all-features -- -Dwarnings" diff --git a/clippy.toml b/clippy.toml new file mode 100644 index 0000000..154626e --- /dev/null +++ b/clippy.toml @@ -0,0 +1 @@ +allow-unwrap-in-tests = true diff --git a/rust-toolchain.toml b/rust-toolchain.toml new file mode 100644 index 0000000..310907f --- /dev/null +++ b/rust-toolchain.toml @@ -0,0 +1,5 @@ +[toolchain] +channel = "1.80" +components = ["rustfmt", "rust-src", "rust-analyzer", "clippy"] +profile = "minimal" +