[package]
edition = "2024"
name = "tomljson"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lossless TOML ↔ JSON translation"
readme = "README.md"
keywords = [
"toml",
"json",
"schema",
"serde",
]
categories = [
"encoding",
"parser-implementations",
]
license = "MIT"
repository = "https://github.com/edochi/mdvs"
[lib]
name = "tomljson"
path = "src/lib.rs"
[[test]]
name = "baseline"
path = "tests/baseline.rs"
[[test]]
name = "decode"
path = "tests/decode.rs"
[[test]]
name = "encode"
path = "tests/encode.rs"
[dependencies.serde_json]
version = "1"
[dependencies.toml]
version = "1"
[dependencies.toml_writer]
version = "1"