forked from msuchane/acorns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (38 loc) · 1.26 KB
/
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
33
34
35
36
37
38
39
40
41
[package]
name = "acorns"
authors = ["Marek Suchánek <msuchane@redhat.com>"]
version = "1.0.0"
edition = "2021"
# Check the Rust version using `cargo msrv verify`.
rust-version = "1.70"
description = "Generate an AsciiDoc release notes document from tracking tickets."
license = "GPL-3.0-or-later"
readme = "README.md"
categories = ["command-line-utilities", "text-processing", "template-engine"]
keywords = ["releasenotes", "asciidoc", "documentation", "RedHat"]
repository = "https://github.com/redhat-documentation/acorns/"
homepage = "https://redhat-documentation.github.io/acorns/"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bpaf = { version = "0.9", features = ["derive", "bright-color"]}
log = "0.4"
simplelog = "0.12"
# Disable support for tracing_error and SpanTrace in eyre
color-eyre = { version = "0.6", default-features = false }
serde = "^1.0"
serde_derive = "^1.0"
serde_json = "1.0"
serde_yaml = "0.9"
bugzilla_query = "1.1"
jira_query = "1.5"
tokio = { version = "1.37", features = ["full"] }
askama = "^0.12"
time = "0.3"
counter = "^0.5"
regex = "1.10"
once_cell = "1.19"
include_dir = "0.7"
ignore = "0.4"
[build-dependencies]
bpaf = { version = "0.9", features = ["derive", "docgen"]}
time = "0.3"