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

update lib to phobos #35

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Design.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ Phobos V3 will use a single package root `lib.` with multiple 'trunk' packages.
6. The old `std` root can continue to be maintained and built independently of the new Phobos root.
7. Multiple trunk packages allows Phobos to expand normally without running into the 64k DLL symbol limit on Windows.

Currently the core roots/trunks for Phobos V3 are `core`, `etc`, and `lib.sys`. As a rule, the `lib.sys` trunk is not allowed to import from non-core trunks.
Currently the core roots/trunks for Phobos V3 are `core`, `etc`, and `phobos.sys`. As a rule, the `phobos.sys` trunk is not allowed to import from non-core trunks.

Proposed Package Structure (Existing Modules Only):
```
core.*
etc.*
std.*
lib.sys
phobos.sys
| algorithm
| comparison
| iteration
Expand Down Expand Up @@ -107,17 +107,17 @@ lib.sys
| typecons
| uuid
| variant
lib.data
phobos.data
| base64
| csv
| json
| zip
lib.text
phobos.text
| ascii
| encoding
| uni
| utf
lib.net
phobos.net
| socket
| uri
```
Expand Down