diff options
| author | Fuwn <[email protected]> | 2025-05-31 00:28:39 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-05-31 00:32:52 -0700 |
| commit | a5ce6c438a1546927bf90847c0e4cd6bcf45f0dc (patch) | |
| tree | b4f36c0dd021895383e3da16425c91cd2a690421 | |
| parent | e2671cb15e84962dc2e92e29911b6066a067fc05 (diff) | |
| download | para-a5ce6c438a1546927bf90847c0e4cd6bcf45f0dc.tar.xz para-a5ce6c438a1546927bf90847c0e4cd6bcf45f0dc.zip | |
chore(Cargo): Bump Rust edition
| -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 |