e32bd1af6d
Add `codewhale update --check` so users can compare the installed version with the latest release without downloading or replacing binaries. Surface the same release check in `codewhale doctor`, and share release lookup, mirror handling, timeout, and version comparison logic between update and doctor.
15 lines
393 B
TOML
15 lines
393 B
TOML
[package]
|
|
name = "codewhale-release"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
description = "Shared CodeWhale release discovery and version comparison helpers"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
reqwest = { workspace = true, features = ["blocking"] }
|
|
semver.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|