generated from myrrlyn/template_rs
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
108 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[toolchain] | ||
channel = "stable" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
################################################################################ | ||
# Rust Style Configuration # | ||
# # | ||
# This file controls the operation of `rustfmt` and `cargo fmt`. As the # | ||
# `rustfmt` tool is still unstable, this file only contains the configurations # | ||
# that are stable as of the pinned Rust version in `rust-toolchain`. The file # | ||
# `rustfmt-nightly.toml` contains the configurations that are available as of # | ||
# the nightly Rust release when that file was last touched. # | ||
################################################################################ | ||
|
||
edition = "2018" | ||
hard_tabs = true | ||
force_explicit_abi = true | ||
max_width = 81 | ||
merge_derives = true | ||
newline_style = "Unix" | ||
remove_nested_parens = true | ||
reorder_imports = true | ||
reorder_modules = true | ||
tab_spaces = 4 | ||
use_field_init_shorthand = true | ||
use_small_heuristics = "Default" | ||
use_try_shorthand = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
######################################################################## | ||
# Coverage Configuration # | ||
# # | ||
# This file controls the behavior of `cargo-tarpaulin`, which produces # | ||
# test coverage reports for the project. # | ||
######################################################################## | ||
|
||
[coverage] | ||
all-features = true | ||
count = true | ||
ignore-panics = true | ||
ignore-tests = true | ||
run-types = [ | ||
"Tests", | ||
] | ||
|
||
[report] | ||
out = [ | ||
"Html", | ||
"Lcov", | ||
"Xml", | ||
] | ||
output-dir = "target/tarpaulin" |