forked from dtolnay/unsafe-libyaml
-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (26 loc) · 794 Bytes
/
Cargo.toml
File metadata and controls
30 lines (26 loc) · 794 Bytes
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
30
[package]
name = "libyaml-safer"
version = "0.3.0"
authors = ["Simon Ask Ulsnes <simon@ulsnes.dk"]
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.64"
[dev-dependencies]
# To test on 1.64,1.75,etc, comment out `criterion`.
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