Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
honsunrise committed Apr 20, 2023
0 parents commit d96de74
Show file tree
Hide file tree
Showing 28 changed files with 4,087 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .clippy.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
msrv = "1.60.0"
avoid-breaking-exported-api = false
disallowed-names = ["key", "sign_key", ".."]
22 changes: 22 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# EditorConfig is awesome: https://EditorConfig.org

# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true

[*.{rs, toml, yml, yaml, json, md, sh, c, h, cpp, hpp, cc}]
charset = utf-8

[*.{rs, c, h, cpp, hpp, cc}]
trim_trailing_whitespace = true
indent_style = space
indent_size = 4

[*.{toml, yml, yaml}]
trim_trailing_whitespace = true
indent_style = space
indent_size = 2
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.DS_Store
.idea
.vscode
.fleet
target
/logs
**/*.profraw
/coverage
cobertura.xml
lcov.info
*.db
14 changes: 14 additions & 0 deletions .rustfmt.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
edition = "2021"
max_width = 100
tab_spaces = 4
group_imports = "StdExternalCrate"
reorder_imports = true
imports_granularity = "Module"
imports_layout = "HorizontalVertical"
format_strings = false
type_punctuation_density = "Wide"
match_block_trailing_comma = true
use_small_heuristics = "Default"
newline_style = "Native"
overflow_delimited_expr = false
struct_lit_single_line = false
11 changes: 11 additions & 0 deletions .taplo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
exclude = [".*"]

[formatting]
reorder_keys = false

[[rule]]
include = ["**/Cargo.toml"]
keys = ["dependencies"]

[rule.formatting]
reorder_keys = true
Loading

0 comments on commit d96de74

Please # to comment.