[package]
name = "conflag"
version = "0.1.1"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "A simple and powreful configuration language, extending JSON with declarative and functional language features."
homepage = "https://github.com/bethebunny/conflag"
repository = "https://github.com/bethebunny/conflag"
readme = "README.md"
keywords = ["language", "pest", "serde", "json", "serialization"]
categories = ["config"]
excludes = [".github/**", ".vscode/**"]
[lib]
name = "conflag"
crate-type = ["rlib", "cdylib"]
[features]
serde = ["dep:serde"]
python = ["dep:pyo3"]
[dependencies]
pest = "2.5.6"
pest_derive = "2.5.6"
serde = { version = "1.0.159", optional = true, features=["derive"] }
pyo3 = { version = "0.18.2", optional = true, features=["extension-module"] }