File: Cargo.toml.orig

package info (click to toggle)
rust-yamlpatch 0.7.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 232 kB
  • sloc: makefile: 2
file content (31 lines) | stat: -rw-r--r-- 774 bytes parent folder | download
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
31
[package]
name = "yamlpatch"
version = "0.7.0"
description = "Comment and format-preserving YAML patch operations"
repository = "https://github.com/zizmorcore/zizmor/tree/main/crates/yamlpatch"
keywords = ["yaml", "patch"]

authors = [
    "Mostafa Moradian <mstfmoradian@gmail.com>",
    "William Woodruff <william@yossarian.net>",
]
homepage.workspace = true
edition.workspace = true
license.workspace = true

[lints]
workspace = true

[dependencies]
indexmap.workspace = true
line-index.workspace = true
serde = { workspace = true, features = ["derive"] }
serde_json.workspace = true
serde_yaml.workspace = true
subfeature.workspace = true
thiserror.workspace = true
yamlpath.workspace = true

[dev-dependencies]
insta.workspace = true
pretty_assertions.workspace = true