• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "serde_yaml"
3version = "0.9.31"
4authors = ["David Tolnay <dtolnay@gmail.com>"]
5categories = ["encoding", "parser-implementations"]
6description = "YAML data format for Serde"
7documentation = "https://docs.rs/serde_yaml/"
8edition = "2021"
9keywords = ["yaml", "serde", "serialization"]
10license = "MIT OR Apache-2.0"
11repository = "https://github.com/dtolnay/serde-yaml"
12rust-version = "1.64"
13
14[dependencies]
15indexmap = "2.2.1"
16itoa = "1.0"
17ryu = "1.0"
18serde = "1.0.195"
19unsafe-libyaml = "0.2.10"
20
21[dev-dependencies]
22anyhow = "1.0.79"
23indoc = "2.0"
24serde_derive = "1.0.195"
25
26[lib]
27doc-scrape-examples = false
28
29[package.metadata.docs.rs]
30targets = ["x86_64-unknown-linux-gnu"]
31rustdoc-args = ["--generate-link-to-definition"]
32