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

This commit is contained in:
daimond113 2024-12-31 01:37:42 +01:00
parent fd5a038d8b
commit 80b8b151d7
No known key found for this signature in database
GPG key ID: 3A8ECE51328B513C

View file

@ -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,
} }