-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor Arklib into Separate Crates #5
Merged
Conversation
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
Use Github Actions template for Rust
…nder (#18) Authored-by: Jerry Wong <[email protected]>
Co-authored-by: Kirill Taran <[email protected]> Co-authored-by: Gwendal Fernet <[email protected]>
* Replacing machine-id with custom stored uuid. * Changed Name From device_id to app_id * Made Function Public * Loaded App Id On Remaining Tests * Fixed Tests * Renamed Folder
This commit introduces a new benchmark file, benches/hash_benchmark.rs. The file includes the compute_bytes_benchmark function, which has three benchmarks for different use cases: - compute_bytes_small: Benchmarks with small input data. - compute_bytes_medium: Evaluates medium-sized input data. - compute_bytes_large: Measures large input data performance. Criterion is configured as a dev dependency with the `html_reports` feature for detailed HTML reports in `target/criterion/`. Signed-off-by: Tarek <[email protected]>
…m Configuration (#82)
Note: |
kirillt
reviewed
Feb 28, 2024
tareknaser
force-pushed
the
crate-org
branch
from
February 28, 2024 16:59
3d49527
to
50e1b19
Compare
Signed-off-by: Tarek <[email protected]>
Signed-off-by: Tarek <[email protected]>
Signed-off-by: Tarek <[email protected]>
Signed-off-by: Tarek <[email protected]>
- data-pdf - data-error - data-json - data-link - fs-storage - fs-atomic-light - data-json (ex fs-utils) - data-error (ex fs-utils)
kirillt
approved these changes
Mar 1, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @tareknaser
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR refactors Arklib into three separate crates for better organization and modularity:
fs-atomic-versions
: Manages theapp_id
filefs-index
: Handles resource index managementfs-utils
: Contains utility functions and common code used across the project.Additionally, this PR relocates the
README.md
,fonts/
, andtestdata/
directories to the project's root directorymonorepo
tomain
before merging