{"id":17041903,"url":"https://github.com/cloudhead/microserde","last_synced_at":"2025-06-25T17:08:58.699Z","repository":{"id":57638503,"uuid":"326926561","full_name":"cloudhead/microserde","owner":"cloudhead","description":"miniserde minus the dependencies","archived":false,"fork":false,"pushed_at":"2021-08-25T07:59:12.000Z","size":229,"stargazers_count":19,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-12T14:49:05.505Z","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":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cloudhead.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE-APACHE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-01-05T07:54:15.000Z","updated_at":"2024-07-22T17:07:03.000Z","dependencies_parsed_at":"2022-08-30T07:50:37.424Z","dependency_job_id":null,"html_url":"https://github.com/cloudhead/microserde","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/cloudhead/microserde","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudhead%2Fmicroserde","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudhead%2Fmicroserde/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudhead%2Fmicroserde/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudhead%2Fmicroserde/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cloudhead","download_url":"https://codeload.github.com/cloudhead/microserde/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudhead%2Fmicroserde/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261917439,"owners_count":23229918,"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-14T09:14:07.456Z","updated_at":"2025-06-25T17:08:58.678Z","avatar_url":"https://github.com/cloudhead.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"Microserde\n==========\n\nMicroserde is [miniserde](https://crates.io/crates/miniserde) minus the\ndependencies.\n\nAll credit goes to David Tolnay for the original library.\n\nFrom *miniserde*:\n\n*Prototype of a data structure serialization library with several opposite\ndesign goals from [Serde](https://serde.rs).*\n\nDifferences compared to `miniserde`:\n\n* `ryu` crate is replaced with stdlib functionality\n* `itoa` crate is replaced with stdlib functionality\n* `serde` crate is removed from *dev-dependencies*\n\n```toml\n[dependencies]\nmicroserde = \"0.1\"\n```\n\n### Example\n\n```rust\nuse microserde::{json, Serialize, Deserialize};\n\n#[derive(Serialize, Deserialize, Debug)]\nstruct Example {\n    code: u32,\n    message: String,\n}\n\nfn main() -\u003e microserde::Result\u003c()\u003e {\n    let example = Example {\n        code: 200,\n        message: \"reminiscent of Serde\".to_owned(),\n    };\n\n    let j = json::to_string(\u0026example);\n    println!(\"{}\", j);\n\n    let out: Example = json::from_str(\u0026j)?;\n    println!(\"{:?}\", out);\n\n    Ok(())\n}\n```\n\n### License\n\nLicensed under either of \u003ca href=\"LICENSE-APACHE\"\u003eApache License, Version\n2.0\u003c/a\u003e or \u003ca href=\"LICENSE-MIT\"\u003eMIT license\u003c/a\u003e at your option.\n\nUnless you explicitly state otherwise, any contribution intentionally submitted\nfor inclusion in this crate by you, as defined in the Apache-2.0 license, shall\nbe dual licensed as above, without any additional terms or conditions.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloudhead%2Fmicroserde","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcloudhead%2Fmicroserde","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloudhead%2Fmicroserde/lists"}