Mostly a test to see how Renovate behaves here. It updated from `0.11.0` to `0.12.0`, even though `0.12.7` was available at that point. While this doesn't matter for Cargo, Renovate seems to use `Cargo.toml` to calculate the changelog entries, not `Cargo.lock`. So because `Cargo.toml` specified `0.11.0`, PR #60 showed changelogs for all tags since then, even though `Cargo.lock` was at `0.11.27`. So there were 27 pointless changelog entries shown. So this test is to see whether Renovate will always use the `x.0` version in `Cargo.toml`, or if having `0.12.7` now will trigger it to eventually go to some `0.13.x`, where `x > 0`.
27 lines
846 B
TOML
27 lines
846 B
TOML
[package]
|
|
name = "gitea"
|
|
version = "0.1.2"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
clap = { version = "4.2.0", features = ["cargo", "color", "unicode", "std", "derive"] }
|
|
color-eyre = "0.6.2"
|
|
reqwest = { version = "0.12.7", default-features = false, features = ["blocking", "json", "rustls-tls-native-roots"] }
|
|
serde_json = "1.0.95"
|
|
serde = { version = "1.0.159", features = ["derive"] }
|
|
time = { version = "0.3.20", features = ["formatting", "parsing", "serde"] }
|
|
url = { version = "2.3.1", features = ["serde"] }
|
|
cli-table = "0.4.7"
|
|
globwalk = "0.9.0"
|
|
|
|
[profile.release]
|
|
strip = "debuginfo"
|
|
lto = true
|
|
|
|
[profile.dev.package.backtrace]
|
|
opt-level = 3
|
|
|
|
[patch.crates-io]
|
|
color-eyre = { git = "https://github.com/sclu1034/color-eyre.git", branch = "fork" }
|