You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
613 B
25 lines
613 B
[package]
|
|
name = "clpack"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
authors = ["Ondřej Hruška <ondra@ondrovo.com>"]
|
|
description = "Manage changelog across multiple release channels"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5", features = ["string"] }
|
|
thiserror = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
toml = "0.9"
|
|
smart-default = "0.7"
|
|
regex = "1"
|
|
anyhow = "1"
|
|
colored = "3"
|
|
faccess = "0.2"
|
|
chrono = "0.4"
|
|
indexmap = { version = "2.11", features = ["serde"] }
|
|
|
|
# input
|
|
|
|
# sadly this looks mostly abandoned. Alternative is "dialoguer"
|
|
inquire = { version = "0.7.5", features = ["editor"] }
|
|
|