[package]
edition = "2021"
rust-version = "1.56.0"
name = "libyml"
version = "0.0.6"
authors = ["LibYML Contributors"]
build = false
include = [
"/Cargo.toml",
"/LICENSE-APACHE",
"/LICENSE-MIT",
"/MIGRATION.md",
"/README.md",
"/examples/**",
"/src/**",
"/tests/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
DEPRECATED — `libyml` is unmaintained. This release is a thin compatibility shim that forwards every call to `unsafe-libyaml` (the upstream C-libyaml translation `libyml` was originally forked from). Please migrate to `unsafe-libyaml`, `yaml-rust2`, or `noyalib`.
"""
homepage = "https://github.com/sebastienrousseau/libyml"
documentation = "https://docs.rs/libyml/"
readme = "README.md"
keywords = [
"yaml",
"serde",
"deprecated",
"noyalib",
"libyaml",
]
categories = [
"encoding",
"parser-implementations",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/sebastienrousseau/libyml"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
targets = ["x86_64-unknown-linux-gnu"]
[features]
default = []
[lib]
name = "libyml"
path = "src/lib.rs"
[[example]]
name = "apis"
path = "examples/apis/main.rs"
[[example]]
name = "example"
path = "examples/example.rs"
[[example]]
name = "migration"
path = "examples/migration.rs"
[[test]]
name = "shim"
path = "tests/shim.rs"
[[test]]
name = "test_decode"
path = "tests/test_decode.rs"
[[test]]
name = "test_lib"
path = "tests/test_lib.rs"
[dependencies.unsafe-libyaml]
version = "0.2.11"
[dev-dependencies]
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
strip = "symbols"