Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
beb5f1a
feat: interpret value (WIP)
indietyp Jan 4, 2026
62122a8
feat: value enum
indietyp Jan 4, 2026
ae73504
feat: value impl
indietyp Jan 5, 2026
8e32d68
feat: value impl split
indietyp Jan 5, 2026
363baec
feat: API cleanup
indietyp Jan 5, 2026
e8d161f
feat: runtime
indietyp Jan 5, 2026
94e65fb
feat: runtime v0
indietyp Jan 5, 2026
7fc4561
feat: restructure value to have dedicated ref type
indietyp Jan 6, 2026
da9d33b
feat: checkpoint
indietyp Jan 6, 2026
8146144
feat: allocator api support for value tree
indietyp Jan 6, 2026
2b2efe3
feat: runtime checkpoint
indietyp Jan 6, 2026
a99fcd3
feat: eval runtime
indietyp Jan 6, 2026
c342ab9
feat: int comparison to num
indietyp Jan 7, 2026
a1a8529
chore: docs
indietyp Jan 7, 2026
493fd1b
chore: implement the reverse
indietyp Jan 7, 2026
4cfa84f
feat: implement num comparison
indietyp Jan 7, 2026
812e0ee
fix: docs
indietyp Jan 7, 2026
8afbf66
fix: docs
indietyp Jan 7, 2026
0d1ff9f
test: locals unsafe code
indietyp Jan 7, 2026
2d77c49
feat: make errors clearer
indietyp Jan 8, 2026
8b754a2
feat: diagnostics
indietyp Jan 8, 2026
9abd4ec
chore: docs
indietyp Jan 8, 2026
218ccc0
chore: docs
indietyp Jan 8, 2026
da19209
fix: comments
indietyp Jan 8, 2026
27c92f1
feat: tests
indietyp Jan 8, 2026
c8a95c4
test: ICE
indietyp Jan 8, 2026
f7de26c
chore: deps
indietyp Jan 8, 2026
5fc9079
chore: actually dont typo
indietyp Jan 8, 2026
0a54851
chore: use chunks instead of windows
indietyp Jan 8, 2026
ab16ef9
fix: do not overflow on neg
indietyp Jan 8, 2026
09de4ae
feat: use scratch vector to avoid clobbering
indietyp Jan 8, 2026
e7d1594
chore: better docs
indietyp Jan 8, 2026
afab9c8
chore: docs
indietyp Jan 8, 2026
c917f96
fix: doctest
indietyp Jan 8, 2026
85204ae
chore: clear scratch before run
indietyp Jan 8, 2026
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
43 changes: 41 additions & 2 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ hifijson = { version = "0.4.0", default-features = fal
http = { version = "1.3.1", default-features = false }
humansize = { version = "2.1.3", default-features = false }
hyper = { version = "1.7.0", default-features = false }
imbl = { version = "6.1.0", default-features = false }
include_dir = { version = "0.7.4", default-features = false }
include_dir_macros = { version = "0.7.4", default-features = false }
indexmap = { version = "2.12.0", default-features = false }
Expand Down
Loading
Loading