Skip to content

Commit

Permalink
Add dependencies as workspace dependencies (#21)
Browse files Browse the repository at this point in the history
* Add dependencies as workspace dependencies

* Update egui to later version (not latest as that's a breaking change)

* Add .editorconfig
  • Loading branch information
vojd committed Dec 29, 2023
1 parent 50b7dc0 commit 74662b5
Show file tree
Hide file tree
Showing 5 changed files with 255 additions and 143 deletions.
28 changes: 28 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# editorconfig.org
# taken from https://github.com/rust-lang/rust/blob/master/.editorconfig

root = true

[*]
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
indent_style = space
indent_size = 4

[*.rs]
max_line_length = 121

[*.md]
# double whitespace at end of line
# denotes a line break in Markdown
trim_trailing_whitespace = false

[*.yml]
indent_size = 2

[Makefile]
indent_style = tab

0 comments on commit 74662b5

Please sign in to comment.