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