- Introduce new SCF (SCC Format) library with header, implementation, and test files - SCF is a minimal executable/linkable format focused on internal linking with external symbol import/export abstraction - Rename lexer and lex_parser packages from 'smcc_' to 'scc_' prefix for consistency - Update hashmap implementation to use 'scc_' prefix for types and structures - Add build configuration for new format library with dependencies on libcore and libutils
9 lines
176 B
TOML
9 lines
176 B
TOML
[package]
|
|
name = "scc_lex"
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
|
{ name = "libcore", path = "../../runtime/libcore" },
|
|
{ name = "lex_parser", path = "../lex_parser" },
|
|
]
|