libyaml-safer/Cargo.toml

32 lines
724 B
TOML
Raw Normal View History

[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"]
2022-08-01 02:19:06 +00:00
license = "MIT"
2024-01-26 09:56:28 +00:00
repository = "https://github.com/simonask/libyaml-safer"
2022-08-01 02:19:06 +00:00
rust-version = "1.56"
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
[lib]
doc-scrape-examples = false
2022-07-08 18:58:23 +00:00
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
rustdoc-args = ["--generate-link-to-definition"]