✨ feat(app): add initial app crate#34
Open
gortavoher wants to merge 3 commits intomainfrom
Open
Conversation
- create Cargo.toml file with basic package metadata - set crate-type to "cdylib" for dynamic library generation - specify dependency on uniffi with CLI feature enabled 📦 build(workspace): include app crate in workspace - add "crates/app" to workspace members for unified build management ✨ feat(app): implement uniffi-bindgen binary entry point - add main function to execute uniffi_bindgen_main for UDL processing ✨ feat(app): introduce basic app library with functionality - setup uniffi scaffolding for FFI support - implement say_hi function to return greeting string - add add function with basic addition logic ✅ test(app): add unit test for add function - implement test to verify correct addition functionality
- update Cargo.toml workspace members to exclude "crates/app" 🔧 chore(dependencies): cleanup unused dependencies in Cargo.lock - remove dependencies related to the deleted app crate 🔥 refactor(app): delete app crate - remove Cargo.toml, source and test files associated with the app crate
This file contains hidden or 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
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.
📦 build(workspace): include app crate in workspace
✨ feat(app): implement uniffi-bindgen binary entry point
✨ feat(app): introduce basic app library with functionality
✅ test(app): add unit test for add function