diff --git a/LICENSE b/LICENSE.md similarity index 100% rename from LICENSE rename to LICENSE.md diff --git a/kernel/.rustfmt.toml b/kernel/.rustfmt.toml deleted file mode 100644 index 8072fe9..0000000 --- a/kernel/.rustfmt.toml +++ /dev/null @@ -1,44 +0,0 @@ -# GitHub -# Configurator - -unstable_features = true -edition = "2021" -license_template_path = ".cargo/license_template.txt" - -brace_style = "AlwaysNextLine" -control_brace_style = "AlwaysSameLine" -imports_layout = "Vertical" -indent_style = "Block" -imports_granularity = "Crate" -newline_style = "Auto" -hex_literal_case = "Upper" -binop_separator = "Front" - -hard_tabs = false -format_code_in_doc_comments = false -combine_control_expr = false -reorder_imports = false -reorder_modules = false - -condense_wildcard_suffixes = true -error_on_line_overflow = true -error_on_unformatted = true -fn_single_line = true -format_macro_bodies = true -format_macro_matchers = true -format_strings = true -match_block_trailing_comma = true -normalize_comments = true -normalize_doc_attributes = true -reorder_impl_items = true -use_field_init_shorthand = true -wrap_comments = true - -blank_lines_lower_bound = 0 -blank_lines_upper_bound = 1 -tab_spaces = 2 -enum_discrim_align_threshold = 45 -struct_field_align_threshold = 45 -inline_attribute_width = 70 -comment_width = 90 -max_width = 110 diff --git a/kernel/rust-toolchain.toml b/kernel/rust-toolchain.toml deleted file mode 100644 index 5437fa6..0000000 --- a/kernel/rust-toolchain.toml +++ /dev/null @@ -1,13 +0,0 @@ -# For a reference to this file, see -# https://rust-lang.github.io/rustup/overrides.html#the-toolchain-file - -# Rust toolchain releases can be found under -# https://rust-lang.github.io/rustup-components-history/ - -# Make sure to propagate version and component changes here to -# `.github/workflows/kernel_tests.yml` and to -# `.github/workflows/security.yml`! - -[toolchain] -channel = "nightly-2023-10-17" -components = [ "cargo", "llvm-tools", "rustc", "rustfmt", "rust-std", "rust-src" ]