[package]
edition = "2021"
rust-version = "1.95"
name = "flyleaf-core"
version = "0.2.1"
authors = ["David M. Anderson"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The document model behind Tommy Flyleaf: TOML edited as a tree, with comments, order and formatting kept"
readme = "README.md"
keywords = [
"toml",
"editor",
"toml_edit",
]
categories = [
"parser-implementations",
"config",
]
license = "MIT"
repository = "https://github.com/excelano/flyleaf"
resolver = "3"
[features]
default = ["fs"]
fs = ["dep:tempfile"]
[lib]
name = "flyleaf_core"
path = "src/lib.rs"
[[test]]
name = "roundtrip"
path = "tests/roundtrip.rs"
[dependencies.tempfile]
version = "3.27"
optional = true
[dependencies.toml_edit]
version = "0.25"