[package]
edition = "2021"
name = "serpent-serializer"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Serialize Lua values to round-trippable Lua source with cycle and shared-reference handling"
readme = "README.md"
keywords = [
"lua",
"serialize",
"serializer",
"pretty-print",
]
categories = [
"encoding",
"parsing",
"text-processing",
]
license = "MIT"
repository = "https://github.com/hey-jj/serpent-serializer"
[lib]
name = "serpent_serializer"
path = "src/lib.rs"
[[test]]
name = "coverage"
path = "tests/coverage.rs"
[[test]]
name = "golden"
path = "tests/golden.rs"
[[test]]
name = "loader"
path = "tests/loader.rs"
[[test]]
name = "metamethods"
path = "tests/metamethods.rs"
[[test]]
name = "options"
path = "tests/options.rs"
[[test]]
name = "property"
path = "tests/property.rs"
[[test]]
name = "roundtrip"
path = "tests/roundtrip.rs"
[[test]]
name = "scalars"
path = "tests/scalars.rs"
[dependencies]