From 62101039ce9f4c9a463dd94205caa80bb22f1578 Mon Sep 17 00:00:00 2001 From: Phillip Cloud Date: Fri, 18 Oct 2019 17:30:20 -0400 Subject: [PATCH] Add rustfmt.toml with edition=2018 (#74) * Ignore all target/ directories * Add rustfmt.toml with an edition --- .gitignore | 3 +-- rustfmt.toml | 1 + 2 files changed, 2 insertions(+), 2 deletions(-) create mode 100644 rustfmt.toml diff --git a/.gitignore b/.gitignore index a9661ec..6ae3d3c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,4 @@ -/target/ -/tonic-examples/target/ +target/ **/*.rs.bk Cargo.lock tags diff --git a/rustfmt.toml b/rustfmt.toml new file mode 100644 index 0000000..32a9786 --- /dev/null +++ b/rustfmt.toml @@ -0,0 +1 @@ +edition = "2018"