Skip to content
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/multi to single package #4

Conversation

bal7hazar
Copy link
Collaborator

@bal7hazar bal7hazar commented Nov 8, 2023

Closes #3

So I moved all crates into an origami package and all examples into an origami_examples workspace

Did a test and it works on an external repo:

use origami::random::dice::{Dice, DiceTrait};
use debug::PrintTrait;

#[cfg(test)]
#[test]
#[available_gas(10000000000)]
fn test_dice() {
    let mut dice = DiceTrait::new(6, 'seed');
    dice.roll().print();
}

Workload ~ 1h

@ponderingdemocritus ponderingdemocritus merged commit 4ffbdbb into dojoengine:main Nov 8, 2023
7 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Move from multipackage workspace into single package
2 participants