From f31cf1f4f7cdaacbfc8ba2816c557fd8c136bdf4 Mon Sep 17 00:00:00 2001 From: katelyn martin Date: Wed, 11 Dec 2024 11:35:07 -0500 Subject: [PATCH] chore(gitignore): ignore `.cargo` directory (#3451) this commit supercedes #3443. we use the kubert crate to export a collection of metrics measuring the behavior of our asynchronous tokio runtime. in order for this crate to compile, one must set a compile-time flag. this can be done either by setting the RUSTFLAGS environment variable, or via a toml file in .cargo/config.toml. helpful links: - - - this commit adds `.cargo` to the repository's gitignore, so that people may freely modify cargo configuration as needed when building the project from source. Signed-off-by: katelyn martin --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 567abde987..36de45fb1a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ +.cargo +**/.cargo target **/target **/corpus