forked from dtolnay/unsafe-libyaml
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
29 lines (25 loc) · 741 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
29
[package]
name = "libyaml-safer"
version = "0.1.1"
authors = ["Simon Ask Ulsnes <[email protected]"]
categories = ["encoding", "parser-implementations"]
description = "Safer libyaml port, based on unsafe-libyaml"
documentation = "https://docs.rs/libyaml-safer"
edition = "2021"
keywords = ["yaml"]
license-file = "LICENSE-MIT"
repository = "https://github.com/simonask/libyaml-safer"
rust-version = "1.70"
[dev-dependencies]
criterion = "0.5.1"
pretty_assertions = "1.0"
unsafe-libyaml = "0.2.10"
unsafe-libyaml-test-suite = { path = "tests/data" }
[lib]
doc-scrape-examples = false
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
rustdoc-args = ["--generate-link-to-definition"]
[[bench]]
name = "bench"
harness = false