-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (24 loc) · 885 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[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"]
exclude = [".github/**", ".vscode/**"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[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"] }