v0.3: ELF symbol parsing, sym()/addr()/symbols() globals, addrstr/here prelude helpers

This commit is contained in:
claude
2026-05-27 21:13:10 +00:00
parent 19c6154831
commit d587dbcd4c
7 changed files with 304 additions and 5 deletions
Generated
+16
View File
@@ -77,9 +77,16 @@ version = "0.1.0"
dependencies = [
"libc",
"nix",
"object",
"rquickjs",
]
[[package]]
name = "memchr"
version = "2.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8"
[[package]]
name = "nix"
version = "0.31.3"
@@ -92,6 +99,15 @@ dependencies = [
"libc",
]
[[package]]
name = "object"
version = "0.36.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
dependencies = [
"memchr",
]
[[package]]
name = "proc-macro2"
version = "1.0.106"