initial parser working
All checks were successful
Test the running changes / Test (push) Successful in 35s

This commit is contained in:
2025-12-11 01:46:57 +02:00
parent 617f124ac1
commit 30369cfdd3
10 changed files with 767 additions and 4 deletions

20
Cargo.lock generated
View File

@@ -4,4 +4,22 @@ version = 4
[[package]]
name = "marginal"
version = "0.1.0"
version = "0.0.1"
dependencies = [
"nom",
]
[[package]]
name = "memchr"
version = "2.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
[[package]]
name = "nom"
version = "8.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405"
dependencies = [
"memchr",
]