@shd101wyy/yo 0.0.31 → 0.0.32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -24,7 +24,7 @@ Below is a non-exhaustive list of features that Yo supports:
24
24
  - `object` type with [Non-atomic Reference Counting and Thread-Local Cycle Collection](./docs/en-US/CYCLE_COLLECTION.md).
25
25
  - [Compile-time Reference Counting with Ownership and Lifetime Analysis](./docs/en-US/COMPILE_TIME_RC_WITH_OWNERSHIP_ANALYSIS.md).
26
26
  - Thread-per-core parallelism model (see [PARALLELISM.md](./docs/en-US/PARALLELISM.md)).
27
- - [Declarative build system](./docs/en-US/BUILD_SYSTEM.md) inspired by Zig (`yo build`, `yo init`, cross-compilation, WASM support).
27
+ - [Declarative build system](./docs/en-US/BUILD_SYSTEM.md) inspired by Zig (`yo build`, `yo init`, cross-compilation).
28
28
  - **C** interop.
29
29
  - etc.
30
30
 
@@ -111,22 +111,27 @@ $ sudo pacman -S liburing
111
111
 
112
112
  ## Standard Library
113
113
 
114
+ _Still In Design_
115
+
114
116
  Yo ships with a comprehensive standard library covering strings, collections, file I/O, networking, encoding, regex, crypto, and more. For the full module reference, see **[Standard Library Modules](./docs/STD_LIBRARY_MODULES.md)**.
115
117
 
116
118
  Key modules include:
117
119
 
118
- | Module | Import | Description |
119
- | ----------- | ------------------------------------------------------------ | ----------------------------------------------------------- |
120
- | String | `open import "std/string"` | UTF-8 strings with parsing, search, transform |
121
- | Collections | `"std/collections/array_list"`, `hash_map`, `hash_set`, etc. | ArrayList, HashMap, HashSet, BTreeMap, Deque, PriorityQueue |
122
- | File System | `open import "std/fs/file"` | Async file I/O, directories, metadata |
123
- | Networking | `open import "std/net/tcp"` | TCP/UDP sockets, DNS resolution |
124
- | JSON | `open import "std/encoding/json"` | Full JSON parser/stringifier |
125
- | TOML | `"std/toml/toml"` | TOML config file parser |
126
- | HTTP | `"std/http/http"` | HTTP request builder, response parser |
127
- | Regex | `open import "std/regex/regex"` | Regular expression engine |
128
- | Crypto | `open import "std/crypto/sha256"` | SHA-256, MD5, random |
129
- | Formatting | `open import "std/fmt"` | `print`, `println` for any `ToString` type |
120
+ | Module | Import | Description |
121
+ | ----------- | ------------------------------------------------------- | ----------------------------------------------------------- |
122
+ | String | `import "std/string"` | UTF-8 strings with parsing, search, transform |
123
+ | Collections | `import "std/collections/array_list"`, `hash_map`, etc. | ArrayList, HashMap, HashSet, BTreeMap, Deque, PriorityQueue |
124
+ | File System | `import "std/fs/file"` | Async file I/O, directories, metadata |
125
+ | Networking | `import "std/net/tcp"` | TCP/UDP sockets, DNS resolution |
126
+ | HTTP | `import "std/http"` | HTTP types, async client, `fetch` function |
127
+ | JSON | `import "std/encoding/json"` | Full JSON parser/stringifier |
128
+ | TOML | `import "std/encoding/toml"` | TOML config file parser |
129
+ | Regex | `import "std/regex"` | Regular expression engine |
130
+ | Crypto | `import "std/crypto/sha256"` | SHA-256, MD5, random |
131
+ | URL | `import "std/url"` | URL parsing and formatting |
132
+ | Glob | `import "std/glob"` | Unix-style glob pattern matching |
133
+ | Log | `import "std/log"` | Leveled logging |
134
+ | Formatting | `import "std/fmt"` | `print`, `println` for any `ToString` type |
130
135
 
131
136
  ## Code examples
132
137