From cf46332a9ee4d333869df74ad94f355ef6df2d47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20Degioanni?= Date: Sat, 11 May 2024 20:01:37 +0200 Subject: [PATCH] Add .cargo to gitignore To use a specific version of MLIR, it is useful to set the corresponding environment variable in `.cargo/config.toml`. In order to use this while working in melior, I think it makes sense to gitignore the `.cargo` directory. This can be reverted if the project ever needs to set it to something specific. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index eb5a316cbd..cd8e4b1f6f 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ target +.cargo