-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
30 lines (27 loc) · 991 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
[package]
name = "asciicast"
version = "0.2.4"
edition = "2018"
authors = ["Christian Legnitto <christian@legnitto.com>"]
description = "A library for the Asciicast file format used by Asciinema."
homepage = "https://github.com/LegNeato/asciicast-rs"
repository = "https://github.com/LegNeato/asciicast-rs"
readme = "README.md"
keywords = ["asciicast", "asciinema", "ascii", "tty"]
license = "MIT/Apache-2.0"
[features]
default = ["chrono_support"]
chrono_support = ["chrono"]
[dependencies]
chrono = { version = "0.4", features = ["serde"], optional = true }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
[package.metadata.release]
dev-version-ext = "pre"
pre-release-replacements = [
{ file="README.md", search="asciicast = \"[a-z0-9\\.-]+\"", replace="asciicast = \"{{version}}\"" },
]
pre-release-commit-message = "Release {{version}}"
pro-release-commit-message = "Bump version to {{version}}"
tag-prefix = "v"
tag-message = "Release {{prefix}}{{version}}"