{"id":25409607,"url":"https://github.com/sorairolake/sfc-rs","last_synced_at":"2025-07-16T10:43:12.948Z","repository":{"id":277510507,"uuid":"932632502","full_name":"sorairolake/sfc-rs","owner":"sorairolake","description":"Chris Doty-Humphrey's SFC PRNGs written in pure Rust","archived":false,"fork":false,"pushed_at":"2025-04-07T03:32:59.000Z","size":85,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"develop","last_synced_at":"2025-04-14T01:17:40.545Z","etag":null,"topics":["random","random-generation","random-number-generators","rng","rust","rust-lang","rust-library","sfc"],"latest_commit_sha":null,"homepage":"https://docs.rs/rand_sfc","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/sorairolake.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.adoc","contributing":"CONTRIBUTING.adoc","funding":null,"license":"LICENSE-APACHE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS.adoc","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-02-14T08:34:19.000Z","updated_at":"2025-04-07T03:32:56.000Z","dependencies_parsed_at":"2025-03-28T00:23:54.283Z","dependency_job_id":"d181e731-62f5-4aa7-bc44-e88f5fc40e07","html_url":"https://github.com/sorairolake/sfc-rs","commit_stats":null,"previous_names":["sorairolake/sfc-rs"],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sorairolake%2Fsfc-rs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sorairolake%2Fsfc-rs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sorairolake%2Fsfc-rs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sorairolake%2Fsfc-rs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sorairolake","download_url":"https://codeload.github.com/sorairolake/sfc-rs/tar.gz/refs/heads/develop","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248804824,"owners_count":21164135,"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":["random","random-generation","random-number-generators","rng","rust","rust-lang","rust-library","sfc"],"created_at":"2025-02-16T09:21:08.104Z","updated_at":"2025-07-16T10:43:12.905Z","avatar_url":"https://github.com/sorairolake.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003c!--\nSPDX-FileCopyrightText: 2025 Shun Sakai\n\nSPDX-License-Identifier: CC-BY-4.0\n--\u003e\n\n# sfc-rs\n\n[![CI][ci-badge]][ci-url]\n[![Version][version-badge]][version-url]\n![MSRV][msrv-badge]\n[![Docs][docs-badge]][docs-url]\n![License][license-badge]\n\n**sfc-rs** ([`rand_sfc`][version-url]) is an implementation of\n[Chris Doty-Humphrey's Small Fast Counting PRNGs] written in pure [Rust].\n\nThis crate provides:\n\n- [ ] sfc16\n- [x] sfc32\n- [x] sfc64\n\nThis crate supports version 4 of the SFC algorithms.\n\n\u003e [!IMPORTANT]\n\u003e This crate is not part of the [Rand project].\n\n## Usage\n\nRun the following command in your project directory:\n\n```sh\ncargo add rand_sfc\n```\n\n### Crate features\n\n#### `serde`\n\nEnables the [`serde`] crate.\n\n### `no_std` support\n\nThis crate supports `no_std` mode.\n\n### Documentation\n\nSee the [documentation][docs-url] for more details.\n\n## Minimum supported Rust version\n\nThe minimum supported Rust version (MSRV) of this library is v1.85.0.\n\n## Source code\n\nThe upstream repository is available at\n\u003chttps://github.com/sorairolake/sfc-rs.git\u003e.\n\n## Changelog\n\nPlease see [CHANGELOG.adoc].\n\n## Contributing\n\nPlease see [CONTRIBUTING.adoc].\n\n## Acknowledgment\n\nThis crate depends on the [`rand_core`] crate created by the [Rand project].\n\nThe implementation of this crate is based on the reference implementation\nprovided by [PractRand] version pre0.95, which is licensed under the\n[public domain].\n\n## License\n\nCopyright (C) 2025 Shun Sakai (see [AUTHORS.adoc])\n\nThis library is distributed under the terms of either the _Apache License 2.0_\nor the _MIT License_.\n\nThis project is compliant with version 3.3 of the [_REUSE Specification_]. See\ncopyright notices of individual files for more details on copyright and\nlicensing information.\n\n[ci-badge]: https://img.shields.io/github/actions/workflow/status/sorairolake/sfc-rs/CI.yaml?branch=develop\u0026style=for-the-badge\u0026logo=github\u0026label=CI\n[ci-url]: https://github.com/sorairolake/sfc-rs/actions?query=branch%3Adevelop+workflow%3ACI++\n[version-badge]: https://img.shields.io/crates/v/rand_sfc?style=for-the-badge\u0026logo=rust\n[version-url]: https://crates.io/crates/rand_sfc\n[msrv-badge]: https://img.shields.io/crates/msrv/rand_sfc?style=for-the-badge\u0026logo=rust\n[docs-badge]: https://img.shields.io/docsrs/rand_sfc?style=for-the-badge\u0026logo=docsdotrs\u0026label=Docs.rs\n[docs-url]: https://docs.rs/rand_sfc\n[license-badge]: https://img.shields.io/crates/l/rand_sfc?style=for-the-badge\n[Chris Doty-Humphrey's Small Fast Counting PRNGs]: https://pracrand.sourceforge.net/RNG_engines.txt\n[Rust]: https://www.rust-lang.org/\n[Rand project]: https://github.com/rust-random/rand\n[`serde`]: https://serde.rs/\n[CHANGELOG.adoc]: CHANGELOG.adoc\n[CONTRIBUTING.adoc]: CONTRIBUTING.adoc\n[`rand_core`]: https://crates.io/crates/rand_core\n[PractRand]: https://pracrand.sourceforge.net/\n[public domain]: https://pracrand.sourceforge.net/license.txt\n[AUTHORS.adoc]: AUTHORS.adoc\n[_REUSE Specification_]: https://reuse.software/spec-3.3/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsorairolake%2Fsfc-rs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsorairolake%2Fsfc-rs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsorairolake%2Fsfc-rs/lists"}