{"id":17172298,"url":"https://github.com/tornaxo7/rfc2047-decoder","last_synced_at":"2025-07-24T16:38:22.769Z","repository":{"id":37990674,"uuid":"324818812","full_name":"TornaxO7/rfc2047-decoder","owner":"TornaxO7","description":"RFC 2047 MIME Message Header decoder Rust library.","archived":false,"fork":false,"pushed_at":"2025-03-24T00:50:19.000Z","size":122,"stargazers_count":9,"open_issues_count":1,"forks_count":3,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-03-24T08:29:27.173Z","etag":null,"topics":["decoder","email","library","mail","mime","rfc-2047","rust"],"latest_commit_sha":null,"homepage":"","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/TornaxO7.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","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},"funding":{"github":["soywod","TornaxO7"]}},"created_at":"2020-12-27T17:59:30.000Z","updated_at":"2024-11-11T12:00:57.000Z","dependencies_parsed_at":"2023-12-16T13:46:02.330Z","dependency_job_id":"75dd28fd-9b05-435f-8e11-0368ac7f2417","html_url":"https://github.com/TornaxO7/rfc2047-decoder","commit_stats":{"total_commits":30,"total_committers":6,"mean_commits":5.0,"dds":0.5,"last_synced_commit":"a2054255712c28192abef234bdd35eb62969de3a"},"previous_names":["tornaxo7/rfc2047-decoder","soywod/rfc2047-decoder"],"tags_count":13,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TornaxO7%2Frfc2047-decoder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TornaxO7%2Frfc2047-decoder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TornaxO7%2Frfc2047-decoder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TornaxO7%2Frfc2047-decoder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TornaxO7","download_url":"https://codeload.github.com/TornaxO7/rfc2047-decoder/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246922247,"owners_count":20855345,"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":["decoder","email","library","mail","mime","rfc-2047","rust"],"created_at":"2024-10-14T23:36:37.620Z","updated_at":"2025-04-03T02:10:40.094Z","avatar_url":"https://github.com/TornaxO7.png","language":"Rust","funding_links":["https://github.com/sponsors/soywod","https://github.com/sponsors/TornaxO7","https://www.paypal.com/paypalme/soywod","https://ko-fi.com/soywod","https://www.buymeacoffee.com/soywod","https://liberapay.com/soywod"],"categories":[],"sub_categories":[],"readme":"# rfc2047-decoder [![Crates.io](https://img.shields.io/crates/v/rfc2047-decoder?style=flat-square)](https://crates.io/crates/rfc2047-decoder) [![Crates.io](https://img.shields.io/crates/d/rfc2047-decoder?style=flat-square)](https://crates.io/crates/rfc2047-decoder)\n\n# State\nThis project is considered as finished, only bugs will be fixed so don't wonder, if the last commit is\na long time ago.\n\n# Introduction\n\nRust library for decoding [RFC 2047 MIME Message Headers](https://tools.ietf.org/html/rfc2047).\n\n```rust\nuse rfc2047_decoder;\n\nfn main() {\n    let encoded_str = \"=?UTF-8?Q?str?=\";\n    let decoded_str = \"str\";\n\n    // using the decode helper (default options)\n    assert_eq!(\n        rfc2047_decoder::decode(encoded_str.as_bytes()).unwrap(),\n        decoded_str\n    );\n\n    // using the decoder builder (custom options)\n    assert_eq!(\n        rfc2047_decoder::Decoder::new()\n            .too_long_encoded_word_strategy(rfc2047_decoder::RecoverStrategy::Skip)\n            .decode(encoded_str.as_bytes())\n            .unwrap(),\n        decoded_str\n    );\n}\n```\n\n## Sponsoring\n\n[![github](https://img.shields.io/badge/-GitHub%20Sponsors-fafbfc?logo=GitHub%20Sponsors\u0026style=flat-square)](https://github.com/sponsors/soywod)\n[![paypal](https://img.shields.io/badge/-PayPal-0079c1?logo=PayPal\u0026logoColor=ffffff\u0026style=flat-square)](https://www.paypal.com/paypalme/soywod)\n[![ko-fi](https://img.shields.io/badge/-Ko--fi-ff5e5a?logo=Ko-fi\u0026logoColor=ffffff\u0026style=flat-square)](https://ko-fi.com/soywod)\n[![buy-me-a-coffee](https://img.shields.io/badge/-Buy%20Me%20a%20Coffee-ffdd00?logo=Buy%20Me%20A%20Coffee\u0026logoColor=000000\u0026style=flat-square)](https://www.buymeacoffee.com/soywod)\n[![liberapay](https://img.shields.io/badge/-Liberapay-f6c915?logo=Liberapay\u0026logoColor=222222\u0026style=flat-square)](https://liberapay.com/soywod)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftornaxo7%2Frfc2047-decoder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftornaxo7%2Frfc2047-decoder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftornaxo7%2Frfc2047-decoder/lists"}