[package]
edition = "2024"
name = "fig-sys"
version = "2.5.3"
build = "build.rs"
links = "fig"
include = [
"build.rs",
"src/**/*.rs",
"README.md",
"LICENSE-MIT",
"LICENSE-APACHE",
"zig/build.zig",
"zig/build.zig.zon",
"zig/src/**/*",
"zig/bindings/c/include/**/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "FFI bindings and native library for fig (the comment-preserving JSON/YAML/TOML/… config engine). Used by the `fig` crate."
homepage = "https://github.com/diaryx-org/fig"
documentation = "https://docs.rs/fig-sys"
readme = "README.md"
keywords = [
"config",
"json",
"ffi",
"sys",
"bindings",
]
categories = [
"external-ffi-bindings",
"config",
"parser-implementations",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/diaryx-org/fig"
[features]
default = [
"json",
"yaml",
"toml",
"fig",
]
fig = []
json = []
toml = []
xml = []
yaml = []
zon = []
[lib]
name = "fig_sys"
path = "src/lib.rs"
[target.'cfg(all(target_arch = "wasm32", target_os = "unknown"))'.dependencies.fig-sys-wasm32]
version = "2.5.3"
[target.'cfg(all(target_os = "linux", target_arch = "aarch64", target_env = "gnu"))'.dependencies.fig-sys-linux-arm64-gnu]
version = "2.5.3"
[target.'cfg(all(target_os = "linux", target_arch = "x86_64", target_env = "gnu"))'.dependencies.fig-sys-linux-x64-gnu]
version = "2.5.3"
[target.'cfg(all(target_os = "macos", target_arch = "aarch64"))'.dependencies.fig-sys-macos-arm64]
version = "2.5.3"
[target.'cfg(all(target_os = "windows", target_arch = "x86_64", target_env = "msvc"))'.dependencies.fig-sys-windows-x64-msvc]
version = "2.5.3"