mirror of
https://github.com/pesde-pkg/pesde.git
synced 2025-04-06 20:00:53 +01:00
fix: switch to schemars attribute
Some checks are pending
Debug / Get build version (push) Waiting to run
Debug / Build for linux-x86_64 (push) Blocked by required conditions
Debug / Build for macos-aarch64 (push) Blocked by required conditions
Debug / Build for macos-x86_64 (push) Blocked by required conditions
Debug / Build for windows-x86_64 (push) Blocked by required conditions
Test & Lint / lint (push) Waiting to run
Some checks are pending
Debug / Get build version (push) Waiting to run
Debug / Build for linux-x86_64 (push) Blocked by required conditions
Debug / Build for macos-aarch64 (push) Blocked by required conditions
Debug / Build for macos-x86_64 (push) Blocked by required conditions
Debug / Build for windows-x86_64 (push) Blocked by required conditions
Test & Lint / lint (push) Waiting to run
This commit is contained in:
parent
fd5a038d8b
commit
80b8b151d7
1 changed files with 4 additions and 4 deletions
|
@ -32,16 +32,16 @@ impl Display for WorkspaceDependencySpecifier {
|
||||||
pub enum VersionType {
|
pub enum VersionType {
|
||||||
/// The "^" version type
|
/// The "^" version type
|
||||||
#[default]
|
#[default]
|
||||||
#[cfg_attr(feature = "schema", serde(rename = "^"))]
|
#[cfg_attr(feature = "schema", schemars(rename = "^"))]
|
||||||
Caret,
|
Caret,
|
||||||
/// The "~" version type
|
/// The "~" version type
|
||||||
#[cfg_attr(feature = "schema", serde(rename = "~"))]
|
#[cfg_attr(feature = "schema", schemars(rename = "~"))]
|
||||||
Tilde,
|
Tilde,
|
||||||
/// The "=" version type
|
/// The "=" version type
|
||||||
#[cfg_attr(feature = "schema", serde(rename = "="))]
|
#[cfg_attr(feature = "schema", schemars(rename = "="))]
|
||||||
Exact,
|
Exact,
|
||||||
/// The "*" version type
|
/// The "*" version type
|
||||||
#[cfg_attr(feature = "schema", serde(rename = "*"))]
|
#[cfg_attr(feature = "schema", schemars(rename = "*"))]
|
||||||
Wildcard,
|
Wildcard,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue