From 79480fdd3de496e68cc1255e5d73c5178971775f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20S=C3=A1=20de=20Mello?= Date: Sun, 20 Oct 2024 20:31:47 +0100 Subject: [PATCH 1/2] add Oliver as author and reformat manifest using taplo --- Cargo.toml | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3c6e91e..e4857e2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,15 +1,19 @@ [package] -authors = ["chance dinkins", "André Sá de Mello "] -description = "Data structures and logic for resolving, assigning, and deleting by JSON Pointers (RFC 6901)" +authors = [ + "chance dinkins", + "André Sá de Mello ", + "Oliver Wangler ", +] +description = "Data structures and logic for resolving, assigning, and deleting by JSON Pointers (RFC 6901)" documentation = "https://docs.rs/jsonptr" -edition = "2021" -homepage = "https://github.com/chanced/jsonptr" -keywords = ["json-pointer", "rfc-6901", "6901"] -license = "MIT OR Apache-2.0" -name = "jsonptr" -repository = "https://github.com/chanced/jsonptr" -rust-version = "1.79.0" -version = "0.6.3" +edition = "2021" +homepage = "https://github.com/chanced/jsonptr" +keywords = ["json-pointer", "rfc-6901", "6901"] +license = "MIT OR Apache-2.0" +name = "jsonptr" +repository = "https://github.com/chanced/jsonptr" +rust-version = "1.79.0" +version = "0.6.3" [dependencies] serde = { version = "1.0.203", optional = true, features = ["alloc"] } From a26893997633b8f165414c0078a191279fe87103 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20S=C3=A1=20de=20Mello?= Date: Sun, 20 Oct 2024 20:35:19 +0100 Subject: [PATCH 2/2] fmt taplo config too --- .taplo.toml | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/.taplo.toml b/.taplo.toml index ece5edc..66e2ba0 100644 --- a/.taplo.toml +++ b/.taplo.toml @@ -1,24 +1,24 @@ include = ["**/*.toml", "**/Cargo.toml", "Cargo.toml"] [formatting] - align_comments = true - align_entries = true - allowed_blank_lines = 1 - indent_entries = false - reorder_arrays = false - reorder_keys = true - trailing_newline = true +align_comments = true +align_entries = true +allowed_blank_lines = 1 +indent_entries = false +reorder_arrays = false +reorder_keys = true +trailing_newline = true [[rule]] - formatting.align_entries = true - formatting.array_auto_expand = false - formatting.reorder_arrays = true - formatting.reorder_keys = true - include = ["Cargo.toml", "**/Cargo.toml"] - keys = [ - "dependencies", - "dev-dependencies", - "build-dependencies", - "workspace.dependencies", - "workspace.dev-dependencies", - "workspace.build-dependencies", - ] +formatting.align_entries = true +formatting.array_auto_expand = false +formatting.reorder_arrays = true +formatting.reorder_keys = true +include = ["Cargo.toml", "**/Cargo.toml"] +keys = [ + "dependencies", + "dev-dependencies", + "build-dependencies", + "workspace.dependencies", + "workspace.dev-dependencies", + "workspace.build-dependencies", +]