2022-07-03 15:01:01 +00:00
|
|
|
[package]
|
2024-01-26 09:56:28 +00:00
|
|
|
name = "libyaml-safer"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = [
|
|
|
|
"Simon Ask Ulsnes <simon@ulsnes.dk",
|
|
|
|
"David Tolnay <dtolnay@gmail.com>",
|
|
|
|
]
|
|
|
|
categories = [
|
|
|
|
"encoding",
|
|
|
|
"parser-implementations",
|
|
|
|
"no-std",
|
|
|
|
]
|
|
|
|
description = "Safer libyaml port, based on unsafe-libyaml"
|
|
|
|
documentation = "https://docs.rs/libyaml-safer"
|
2022-08-01 02:19:06 +00:00
|
|
|
edition = "2021"
|
2022-07-08 18:59:42 +00:00
|
|
|
keywords = ["yaml"]
|
2024-02-02 08:52:53 +00:00
|
|
|
license = "Apache 2.0 OR MIT"
|
2024-01-26 09:56:28 +00:00
|
|
|
repository = "https://github.com/simonask/libyaml-safer"
|
2024-02-02 08:52:53 +00:00
|
|
|
rust-version = "1.70"
|
2022-07-03 15:54:25 +00:00
|
|
|
|
2022-07-03 19:05:16 +00:00
|
|
|
[workspace]
|
|
|
|
[dev-dependencies]
|
|
|
|
pretty_assertions = "1.0"
|
|
|
|
unsafe-libyaml-test-suite = { path = "tests/data" }
|
2022-07-08 18:58:23 +00:00
|
|
|
|
2023-01-03 05:40:15 +00:00
|
|
|
[lib]
|
|
|
|
doc-scrape-examples = false
|
|
|
|
|
2024-02-02 08:52:53 +00:00
|
|
|
[dependencies]
|
|
|
|
thiserror = "1.0"
|
|
|
|
|
2022-07-08 18:58:23 +00:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
2023-07-15 21:11:57 +00:00
|
|
|
rustdoc-args = ["--generate-link-to-definition"]
|