-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
58 lines (52 loc) · 1.9 KB
/
Cargo.toml
File metadata and controls
58 lines (52 loc) · 1.9 KB
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
52
53
54
55
56
57
58
[workspace]
members = ["crates/*"]
resolver = "3"
[workspace.package]
edition = "2024"
rust-version = "1.88.0"
license = "MIT"
repository = "https://github.com/lukidoescode/cargo-changeset"
homepage = "https://github.com/lukidoescode/cargo-changeset"
authors = ["Lukas Wagner <appdev.lukaswagner@gmail.com>"]
[workspace.lints.clippy]
pedantic = { level = "warn", priority = -1 }
unwrap_used = "deny"
[workspace.metadata]
[workspace.metadata.changeset]
commit = true
tags = true
keep_changesets = false
tag_format = "crate-prefixed"
changelog = "root"
comparison_links = "auto"
zero_version_behavior = "effective-minor"
[workspace.dependencies]
# Internal crates - versions managed independently in each crate
changeset-core = { path = "crates/changeset-core", version = "0.0.3" }
changeset-parse = { path = "crates/changeset-parse", version = "0.0.3" }
changeset-git = { path = "crates/changeset-git", version = "0.0.4" }
changeset-version = { path = "crates/changeset-version", version = "0.0.3" }
changeset-project = { path = "crates/changeset-project", version = "0.1.2" }
changeset-changelog = { path = "crates/changeset-changelog", version = "0.0.3" }
changeset-operations = { path = "crates/changeset-operations", version = "0.1.3" }
changeset-manifest = { path = "crates/changeset-manifest", version = "0.0.3" }
changeset-saga = { path = "crates/changeset-saga", version = "0.0.2" }
# External dependencies
indexmap = { version = "2.7.1", features = ["serde"] }
thiserror = "2.0.18"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
serde_yml = "0.0.12"
clap = { version = "4.5.57", features = ["derive"] }
toml = "1.1.2"
semver = "1.0.27"
glob = "0.3.3"
git2 = { version = "0.20", default-features = false }
dialoguer = "0.12.0"
petname = "3.0.0"
toml_edit = "0.25.0"
yaml-edit = "0.2.1"
jsonc-parser = { version = "0.32.3", features = ["cst"] }
tracing = "0.1.44"
gset = "1.1.0"
derive_builder = "0.20.2"