mirror of
https://github.com/pesde-pkg/pesde.git
synced 2025-04-05 11:20:55 +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 {
|
||||
/// The "^" version type
|
||||
#[default]
|
||||
#[cfg_attr(feature = "schema", serde(rename = "^"))]
|
||||
#[cfg_attr(feature = "schema", schemars(rename = "^"))]
|
||||
Caret,
|
||||
/// The "~" version type
|
||||
#[cfg_attr(feature = "schema", serde(rename = "~"))]
|
||||
#[cfg_attr(feature = "schema", schemars(rename = "~"))]
|
||||
Tilde,
|
||||
/// The "=" version type
|
||||
#[cfg_attr(feature = "schema", serde(rename = "="))]
|
||||
#[cfg_attr(feature = "schema", schemars(rename = "="))]
|
||||
Exact,
|
||||
/// The "*" version type
|
||||
#[cfg_attr(feature = "schema", serde(rename = "*"))]
|
||||
#[cfg_attr(feature = "schema", schemars(rename = "*"))]
|
||||
Wildcard,
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue