diff --git a/.gitignore b/.gitignore index 35058a6..327a4ce 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,4 @@ /target -.DS_STORE \ No newline at end of file +*.profraw +commitments.json +.* diff --git a/rustfmt.toml b/rustfmt.toml new file mode 100644 index 0000000..a0e3e59 --- /dev/null +++ b/rustfmt.toml @@ -0,0 +1,19 @@ +# See: https://github.com/rust-lang/rustfmt/blob/master/Configurations.md +edition = "2021" +# group_imports = "One" +imports_granularity = "Crate" +use_field_init_shorthand = true +wrap_comments = true +comment_width = 80 +struct_field_align_threshold = 20 +enum_discrim_align_threshold = 20 +condense_wildcard_suffixes = true +format_strings = true +format_macro_matchers = true +format_macro_bodies = true +normalize_comments = true +reorder_impl_items = true +format_code_in_doc_comments = true +overflow_delimited_expr = true +normalize_doc_attributes = true +hex_literal_case = "Lower"