-
Notifications
You must be signed in to change notification settings - Fork 89
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
Split cli and compiler #525
Comments
honestly blek i'm probably not too qualified to comment on this, but isnt the cli, how you interact with the compiler? if i'm interpreting that right, how and why do you separate those? |
this is not just about stdlib, but cli and compiler as well |
Yeah I know but we already discussed a lot on Discord just for stdlib and the others didn't agree to split the project in various repositories. The stdlib is the simplest one to move on in a dedicated repo and I think it should be the first as in this way this repository has just Rust code. |
so we discuss splitting everything else here, and for stdlib in another issue. discussions on discord are rather private and inaccessible compared to github issues. also here you can't just edit out what you said without anyone noticing, since it has a history of revisions rather than just an (edited) next to the message |
@DJMoffinz if compiler has its own crate, it allows for embedding it into other rust projects without the overhead and possible undefined behaviour of calling a binary |
Yeah but it was a long discussion that I suggest to you to read because I tried to convince the other maintainers to do that move but I was alone in the discussion. |
i dont think that discussion is relevant here. i am mainly talking here about splitting it into a different crate to allow for more flexible embedding. without it having anything to do with security or development experience |
This could enable developers to integrate the compiler better with their own projects. They could use ABI that we could expose. It's a nice feature but not a priority |
We can expose Amber as a library in the current git repository. As discussed previously, working with multiple repositories is an unnecessary pain — I'm against it. |
I agree with @mks-h. There's no need to create a new Git repository, as Rust packages can have multiple crates (any number of binary crates, and at most one library crate). See the Rust Book for more information on this. In this case, the library crate would contain everything except |
I agree with you guys @hdwalters @mks-h. There is no need to create new repositories. The library form factor can be achieved with creating a [lib]
name = "amber-compiler"
path = "src/lib.rs" |
i think we should make another repo for the cli and leave this one for compiler to allow for more flexible embedding of amber in other projects
i wouldn't want to use cargo workspaces because it will wipe all git history and mix all issues, PR's, and releases in one repo
git history can be preserved when we move if we clone the repo to a new one and make a commit changing structure in each one
The text was updated successfully, but these errors were encountered: