{"id":17336161,"url":"https://github.com/stackdoubleflow/binde","last_synced_at":"2025-03-27T07:24:50.897Z","repository":{"id":42184243,"uuid":"461633922","full_name":"StackDoubleFlow/binde","owner":"StackDoubleFlow","description":"A crate for deserialiazing binary structures with ease","archived":false,"fork":false,"pushed_at":"2022-07-05T06:33:09.000Z","size":9,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-01T12:27:43.487Z","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/StackDoubleFlow.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-02-20T22:29:22.000Z","updated_at":"2022-02-20T22:29:48.000Z","dependencies_parsed_at":"2022-09-01T17:32:30.830Z","dependency_job_id":null,"html_url":"https://github.com/StackDoubleFlow/binde","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StackDoubleFlow%2Fbinde","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StackDoubleFlow%2Fbinde/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StackDoubleFlow%2Fbinde/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StackDoubleFlow%2Fbinde/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/StackDoubleFlow","download_url":"https://codeload.github.com/StackDoubleFlow/binde/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245799816,"owners_count":20674180,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":"2024-10-15T15:28:17.534Z","updated_at":"2025-03-27T07:24:50.877Z","avatar_url":"https://github.com/StackDoubleFlow.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Binary Deserialize\n\nA crate for deserialiazing binary structures with ease.\n\nHeads Up! This is a very experimental library with no support for alignment and little documentation; use with caution.\n\n```toml\nbinde = { git = \"https://github.com/StackDoubleFlow/binde\" }\n```\n\n# Example\n\n```rust\nuse binde::{BinaryDeserialize, LittleEndian, deserialize};\nuse std::io::Cursor;\n\n#[derive(BinaryDeserialize, Debug, PartialEq, Eq)]\nstruct CoolStructure {\n    a: u16,\n    b: i8,\n}\n\nfn main() {\n    assert_eq!(binde::size_of::\u003cCoolStructure\u003e(), 3)\n\n    let cursor = Cursor::new([0xDF, 0x27, 0x95]);\n    let cool_structure: CoolStructure = deserialize::\u003cLittleEndian, _, _\u003e(cursor).unwrap();\n    assert_eq!(cool_structure, CoolStructure { a: 10207, b: -107 })\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstackdoubleflow%2Fbinde","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstackdoubleflow%2Fbinde","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstackdoubleflow%2Fbinde/lists"}