mirror of
https://github.com/tauri-apps/tauri.git
synced 2025-01-04 17:18:56 +03:00
chore(deps) Update Rust crate semver to v1 (#1909)
* chore(deps) Update Rust crate semver to v1 * fix: build Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
This commit is contained in:
parent
2dc93b4ee3
commit
4d38f2e2b4
@ -44,7 +44,7 @@ tauri-utils = { version = "1.0.0-beta.0", path = "../tauri-utils" }
|
||||
tauri-runtime-wry = { version = "0.1.1", path = "../tauri-runtime-wry", optional = true }
|
||||
rand = "0.8"
|
||||
tempfile = "3"
|
||||
semver = "0.11"
|
||||
semver = "1.0"
|
||||
serde_repr = "0.1"
|
||||
zip = "0.5"
|
||||
ignore = "0.4"
|
||||
|
@ -46,7 +46,7 @@ pub enum Error {
|
||||
InvalidHttpForm,
|
||||
/// Semver error.
|
||||
#[error("{0}")]
|
||||
Semver(#[from] semver::SemVerError),
|
||||
Semver(#[from] semver::Error),
|
||||
/// JSON error.
|
||||
#[error("{0}")]
|
||||
Json(#[from] serde_json::Error),
|
||||
|
@ -13,7 +13,7 @@ pub enum Error {
|
||||
Io(#[from] std::io::Error),
|
||||
/// Semver Errors.
|
||||
#[error("Unable to compare version: {0}")]
|
||||
Semver(#[from] semver::SemVerError),
|
||||
Semver(#[from] semver::Error),
|
||||
/// JSON (Serde) Errors.
|
||||
#[error("JSON error: {0}")]
|
||||
SerdeJson(#[from] serde_json::Error),
|
||||
|
Loading…
Reference in New Issue
Block a user