-
Notifications
You must be signed in to change notification settings - Fork 15
/
Cargo.toml
32 lines (28 loc) · 989 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
30
31
32
[package]
edition = "2021"
name = "cargo-manifest"
version = "0.17.0"
authors = ["Kornel <kornel@geekhood.net>", "Luca Palmieri <rust@lpalmieri.com>"]
description = "Helper crate to parse and manipulate manifests - `Cargo.toml` files."
keywords = ["cargo", "metadata", "toml", "serde", "manifest"]
categories = ["rust-patterns", "parser-implementations"]
repository = "https://github.com/LukeMathWalker/cargo-manifest"
documentation = "https://docs.rs/cargo-manifest"
license = "Apache-2.0 OR MIT"
exclude = ["tests"]
[lib]
name = "cargo_manifest"
path = "src/lib.rs"
[dependencies]
serde = { version = "1.0.114", features = ["derive"] }
thiserror = "1.0.49"
toml = { version = "0.8", default-features = false, features = [
"parse",
"preserve_order",
] }
[dev-dependencies]
insta = "1.39.0"
tempfile = "3.10.1"
toml = { version = "0.8", default-features = false, features = ["display"] }
[package.metadata.release]
pre-release-hook = ["git", "cliff", "-o", "--tag", "{{version}}"]