diff options
| -rw-r--r-- | .editorconfig | 12 | ||||
| -rw-r--r-- | LICENSE.md | 2 | ||||
| -rw-r--r-- | README.md | 1 | ||||
| -rw-r--r-- | rust-toolchain.toml | 3 | ||||
| -rw-r--r-- | rustfmt.toml | 1 |
5 files changed, 19 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..6646a90 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,12 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true +indent_style = space +indent_size = 4 + +[*.md] +trim_trailing_whitespace = false @@ -20,4 +20,6 @@ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR I ## Composer +Shirabe is a port of Composer v2.9.7. + See [composer/LICENSE](composer/LICENSE) for the original Composer license. @@ -2,6 +2,7 @@ Yet another dependency manager for PHP. +*WORK IN PROGRESS* ## License diff --git a/rust-toolchain.toml b/rust-toolchain.toml new file mode 100644 index 0000000..386fc3c --- /dev/null +++ b/rust-toolchain.toml @@ -0,0 +1,3 @@ +[toolchain] +channel = "1.94" +components = ["rust-analyzer", "rust-src"] diff --git a/rustfmt.toml b/rustfmt.toml new file mode 100644 index 0000000..3501136 --- /dev/null +++ b/rustfmt.toml @@ -0,0 +1 @@ +style_edition = "2024" |
