{"id":48498290,"url":"https://github.com/backengineering/iced","last_synced_at":"2026-04-07T13:15:27.857Z","repository":{"id":301991669,"uuid":"959221706","full_name":"backengineering/iced","owner":"backengineering","description":"private ice fork","archived":false,"fork":false,"pushed_at":"2025-12-30T03:20:20.000Z","size":7463,"stargazers_count":8,"open_issues_count":14,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-01-27T13:51:43.637Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/backengineering.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-04-02T12:59:03.000Z","updated_at":"2026-01-15T00:53:47.000Z","dependencies_parsed_at":"2025-06-30T01:56:04.199Z","dependency_job_id":null,"html_url":"https://github.com/backengineering/iced","commit_stats":null,"previous_names":["backengineering/iced"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/backengineering/iced","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/backengineering%2Ficed","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/backengineering%2Ficed/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/backengineering%2Ficed/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/backengineering%2Ficed/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/backengineering","download_url":"https://codeload.github.com/backengineering/iced/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/backengineering%2Ficed/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31513727,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T03:10:19.677Z","status":"ssl_error","status_checked_at":"2026-04-07T03:10:13.982Z","response_time":105,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-04-07T13:15:26.784Z","updated_at":"2026-04-07T13:15:27.851Z","avatar_url":"https://github.com/backengineering.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# iced [![crates.io](https://img.shields.io/crates/v/iced-x86.svg)](https://crates.io/crates/iced-x86) [![NuGet](https://img.shields.io/nuget/v/iced.svg)](https://www.nuget.org/packages/iced/) [![maven](https://img.shields.io/maven-central/v/io.github.icedland.iced/iced-x86)](https://central.sonatype.com/artifact/io.github.icedland.iced/iced-x86/1.21.0) [![pypi](https://img.shields.io/pypi/v/iced-x86.svg)](https://pypi.org/project/iced-x86/) [![GitHub builds](https://github.com/icedland/iced/workflows/GitHub%20CI/badge.svg)](https://github.com/icedland/iced/actions) [![codecov](https://codecov.io/gh/icedland/iced/branch/master/graph/badge.svg)](https://codecov.io/gh/icedland/iced)\n\n\u003cimg align=\"right\" width=\"160px\" height=\"160px\" src=\"logo.png\"\u003e\n\niced is a blazing fast and correct x86 (16/32/64-bit) instruction decoder, disassembler and assembler.\n\n- 👍 Supports all Intel and AMD instructions\n- 👍 Correct: All instructions are tested and iced has been tested against other disassemblers/assemblers (xed, gas, objdump, masm, dumpbin, nasm, ndisasm) and fuzzed\n- 👍 Supports .NET, Rust, Python, JavaScript (WebAssembly)\n- 👍 The formatter supports masm, nasm, gas (AT\u0026T), Intel (XED) and there are many options to customize the output\n- 👍 Blazing fast: Decodes \u003e250 MB/s and decode+format \u003e130 MB/s (Rust, [see here](https://github.com/icedland/disas-bench/tree/a865849deacfb6c33ee0e78f3a3ad7f4c82099f5#results))\n- 👍 Small decoded instructions, only 40 bytes and the decoder doesn't allocate any memory\n- 👍 Create instructions with code assembler, eg. `asm.mov(eax, edx)`\n- 👍 The encoder can be used to re-encode decoded instructions at any address\n- 👍 API to get instruction info, eg. read/written registers, memory and rflags bits; CPUID feature flag, control flow info, etc\n- 👍 License: MIT\n\n# Examples\n\n- Rust: [README](https://github.com/icedland/iced/blob/master/src/rust/iced-x86/README.md)\n- .NET: [README](https://github.com/icedland/iced/blob/master/src/csharp/Intel/README.md)\n- Java: [README](https://github.com/icedland/iced/blob/master/src/java/iced-x86/README.md)\n- Python: [README](https://github.com/icedland/iced/blob/master/src/rust/iced-x86-py/README.md)\n- JavaScript + WebAssembly: [README](https://github.com/icedland/iced/blob/master/src/rust/iced-x86-js/README.md)\n- Lua: [README](https://github.com/icedland/iced/blob/master/src/rust/iced-x86-lua/README.md)\n\n# License\n\nMIT\n\n# Icon\n\nLogo `processor` by [Creative Stall](https://thenounproject.com/creativestall/) from the Noun Project\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbackengineering%2Ficed","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbackengineering%2Ficed","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbackengineering%2Ficed/lists"}