This commit is contained in:
nora 2025-03-21 18:22:58 +01:00
parent 99c215c7ed
commit 8f5b2ce07a
3 changed files with 6 additions and 9 deletions

View file

@ -4,12 +4,11 @@ members = [".", "jsonformat-cli"]
[package] [package]
name = "jsonformat" name = "jsonformat"
version = "2.0.0" version = "2.0.0"
authors = ["Nilstrieb <nilstrieb@gmail.com>"] edition = "2024"
edition = "2021"
license = "MIT" license = "MIT"
description = "Formats JSON extremely fast" description = "Formats JSON extremely fast"
homepage = "https://github.com/Nilstrieb/jsonformat" homepage = "https://github.com/Noratrieb/jsonformat"
repository = "https://github.com/Nilstrieb/jsonformat" repository = "https://github.com/Noratrieb/jsonformat"
readme = "README.md" readme = "README.md"
keywords = ["json", "formatting"] keywords = ["json", "formatting"]
categories = ["parser-implementations"] categories = ["parser-implementations"]

View file

@ -1,12 +1,11 @@
[package] [package]
name = "jsonformat-cli" name = "jsonformat-cli"
version = "0.2.0" version = "0.2.0"
authors = ["Nilstrieb <nilstrieb@gmail.com>"] edition = "2024"
edition = "2021"
license = "MIT" license = "MIT"
description = "Formats JSON extremely fast" description = "Formats JSON extremely fast"
homepage = "https://github.com/Nilstrieb/jsonformat" homepage = "https://github.com/Noratrieb/jsonformat"
repository = "https://github.com/Nilstrieb/jsonformat" repository = "https://github.com/Noratrieb/jsonformat"
readme = "README.md" readme = "README.md"
keywords = ["json", "formatting", "cli"] keywords = ["json", "formatting", "cli"]
categories = ["command-line-utilities"] categories = ["command-line-utilities"]

View file

@ -1,4 +1,3 @@
//!
//! jsonformat is a library for formatting json. //! jsonformat is a library for formatting json.
//! //!
//! It does not do anything more than that, which makes it so fast. //! It does not do anything more than that, which makes it so fast.