Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ Source → [Lexer] → Tokens → [Parser] → AST → [Analyser] → Annotated
### Git Workflow
- Prefer short commit messages, only use multiple lines in case of unrelated changes
- Pull request titles must start with an emoji
- Branch names use category prefixes: `feature/`, `bugfix/`, `housekeeping/`, etc.

### Crate Layout

Expand Down
194 changes: 20 additions & 174 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ ndc_stdlib = { path = "ndc_stdlib" }
num = "0.4.3"
once_cell = "1.21.3"
ordered-float = "5.1.0"
owo-colors = { version = "4.3.0", features = ["supports-colors"] }
yansi = { version = "1.0.1", features = ["detect-tty", "detect-env"] }
rand = "0.10.0"
rand_chacha = "0.10.0"
Expand Down
3 changes: 1 addition & 2 deletions ndc_bin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,12 @@ anyhow.workspace = true
clap.workspace = true
itertools.workspace = true
strsim.workspace = true
miette = { version = "7.6.0", features = ["fancy"] }
codespan-reporting = "0.11.1"
ndc_lexer.workspace = true
ndc_interpreter.workspace = true
ndc_stdlib.workspace = true
ndc_core.workspace = true
ndc_lsp.workspace = true
owo-colors.workspace = true
yansi.workspace = true
rustyline.workspace = true
termimad = "0.34.1"
Expand Down
Loading
Loading