Registry / RepositoryTypeScriptRustPython
Rollpie
ReadmeFiles
Versions
Info
Download
0.1.023.4 KB2026-09-14
Version
0.1.0
Copyright
Rollpie, Irohabook
Publisher
math
Published
2026-09-14
Size
23.4 KB
Downloads
1
Checksum
298d198fbc3fc0aecbe6668651a0d3beefb7ff2d1a098483af80cc924d925bdd
Dependencies
None

Cargo.toml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "simple_json_formatter"
version = "0.1.0"
edition = "2024"
description = "A Rust library and command that formats JSON. Numbers and key order stay as written."
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = ["json", "formatter", "minify"]
categories = ["command-line-utilities", "development-tools"]
# 確かめるためのスクリプトと、速さを比べるプログラム。パッケージには入れない
exclude = ["compare"]

[dependencies]

# デバッグ情報を持たせない。macOS の dev は情報を .o に残したままにするので、target が膨らむ
[profile.dev]
debug = false

[profile.release]
lto = "fat"
codegen-units = 1
strip = true