-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: platform version refactoring into sub versions (#2269)
- Loading branch information
1 parent
93425cf
commit 24de235
Showing
89 changed files
with
4,019 additions
and
8,826 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
...ges/rs-dpp/src/data_contract/document_type/schema/find_identifier_and_binary_paths/mod.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
281 changes: 0 additions & 281 deletions
281
packages/rs-platform-version/src/version/dpp_versions.rs
This file was deleted.
Oops, something went wrong.
8 changes: 8 additions & 0 deletions
8
packages/rs-platform-version/src/version/dpp_versions/dpp_asset_lock_versions/mod.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
use versioned_feature_core::FeatureVersionBounds; | ||
|
||
pub mod v1; | ||
|
||
#[derive(Clone, Debug, Default)] | ||
pub struct DPPAssetLockVersions { | ||
pub reduced_asset_lock_value: FeatureVersionBounds, | ||
} |
10 changes: 10 additions & 0 deletions
10
packages/rs-platform-version/src/version/dpp_versions/dpp_asset_lock_versions/v1.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
use crate::version::dpp_versions::dpp_asset_lock_versions::DPPAssetLockVersions; | ||
use versioned_feature_core::FeatureVersionBounds; | ||
|
||
pub const DPP_ASSET_LOCK_VERSIONS_V1: DPPAssetLockVersions = DPPAssetLockVersions { | ||
reduced_asset_lock_value: FeatureVersionBounds { | ||
min_version: 0, | ||
max_version: 0, | ||
default_current_version: 0, | ||
}, | ||
}; |
Oops, something went wrong.