diff options
| -rw-r--r-- | .cargo/config.toml (renamed from .cargo/config) | 1 | ||||
| -rw-r--r-- | Cargo.toml | 10 | ||||
| -rw-r--r-- | rustfmt.toml | 4 |
3 files changed, 10 insertions, 5 deletions
diff --git a/.cargo/config b/.cargo/config.toml index 958d7fc..ddff440 100644 --- a/.cargo/config +++ b/.cargo/config.toml @@ -1,3 +1,2 @@ [build] rustflags = ["-C", "target-cpu=native"] - @@ -2,13 +2,19 @@ name = "para-cli" version = "0.1.0" authors = ["Fuwn <[email protected]>"] -edition = "2021" +edition = "2024" description = "Decoder and utility for the Flipnote Studios .ppm animation format." readme = "README.md" homepage = "https://github.com/Usugata/para" repository = "https://github.com/Usugata/para" license = "MIT" -keywords = ["ppm", "nintendo-hacking", "flipnote", "flipnotestudio", "nintendo-dsi"] +keywords = [ + "ppm", + "nintendo-hacking", + "flipnote", + "flipnotestudio", + "nintendo-dsi", +] categories = ["encoding"] [[bin]] diff --git a/rustfmt.toml b/rustfmt.toml index 27653e1..478e75e 100644 --- a/rustfmt.toml +++ b/rustfmt.toml @@ -1,4 +1,4 @@ -edition = "2021" +edition = "2024" enum_discrim_align_threshold = 40 # error_on_line_overflow = true # error_on_unformatted = true @@ -20,5 +20,5 @@ tab_spaces = 2 use_field_init_shorthand = true use_small_heuristics = "Max" use_try_shorthand = true -version = "Two" +style_edition = "2024" wrap_comments = true |