-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (41 loc) · 1022 Bytes
/
Cargo.toml
File metadata and controls
51 lines (41 loc) · 1022 Bytes
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
42
43
44
45
46
47
48
49
50
51
[package]
name = "changelogs"
version = "0.6.3"
edition = "2024"
license = "MIT OR Apache-2.0"
repository = "https://github.com/wevm/changelogs-rs"
description = "Manage versioning and changelogs for Cargo workspaces"
keywords = ["changelog", "versioning", "monorepo", "cargo", "workspace"]
categories = ["development-tools", "command-line-utilities"]
rust-version = "1.85"
[[bin]]
name = "changelogs"
path = "src/main.rs"
[dependencies]
# CLI
clap = { version = "4", features = ["derive"] }
inquire = { version = "0.9", features = ["editor"] }
console = "0.15"
# Serialization
serde = { version = "1", features = ["derive"] }
toml = "0.8"
toml_edit = "0.22"
serde_yaml = "0.9"
# Versioning
semver = { version = "1", features = ["serde"] }
# Cargo/workspace
cargo_metadata = "0.19"
# Graph
petgraph = "0.7"
# Errors
thiserror = "2"
anyhow = "1"
# Utils
rand = "0.9"
chrono = "0.4"
regex = "1"
# HTTP (for PyPI API)
ureq = { version = "2", features = ["json"] }
serde_json = "1"
[dev-dependencies]
tempfile = "3"