2026-02-13 17:26:50 +08:00
|
|
|
[package]
|
2026-04-21 14:05:21 +08:00
|
|
|
name = "scc"
|
2026-02-13 17:26:50 +08:00
|
|
|
version = "0.1.0"
|
|
|
|
|
|
|
|
|
|
dependencies = [
|
|
|
|
|
{ name = "argparse", path = "./libs/argparse" },
|
|
|
|
|
{ name = "lexer", path = "./libs/lexer" },
|
2026-02-17 22:47:25 +08:00
|
|
|
{ name = "pproc", path = "./libs/pproc" },
|
2026-03-09 15:25:12 +08:00
|
|
|
{ name = "parser", path = "./libs/parser" },
|
|
|
|
|
{ name = "ast", path = "./libs/ast" },
|
2026-03-15 15:44:50 +08:00
|
|
|
{ name = "ast2ir", path = "./libs/ast2ir" },
|
2026-04-21 14:05:21 +08:00
|
|
|
{ name = "hir", path = "./libs/ir/hir" },
|
2026-04-21 20:35:37 +08:00
|
|
|
{ name = "lir", path = "./libs/ir/lir" },
|
2026-04-26 17:38:30 +08:00
|
|
|
{ name = "mir", path = "./libs/ir/mir" },
|
2026-05-05 15:59:31 +08:00
|
|
|
{ name = "ir2mcode", path = "./libs/ir2mcode" },
|
|
|
|
|
{ name = "sccf2target", path = "./libs/target/sccf2target" },
|
2026-02-13 17:26:50 +08:00
|
|
|
]
|