{"id":19053758,"url":"https://github.com/engossoftware/scidec","last_synced_at":"2026-02-15T17:05:12.316Z","repository":{"id":204527193,"uuid":"712061464","full_name":"EngosSoftware/scidec","owner":"EngosSoftware","description":"Scientific number parser","archived":false,"fork":false,"pushed_at":"2025-02-14T18:05:13.000Z","size":24,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-11-07T00:18:54.554Z","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/EngosSoftware.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2023-10-30T18:01:12.000Z","updated_at":"2025-02-14T18:05:17.000Z","dependencies_parsed_at":null,"dependency_job_id":"e4d3f492-95ec-4a86-956d-d099b5c11645","html_url":"https://github.com/EngosSoftware/scidec","commit_stats":null,"previous_names":["wisbery/scidec"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/EngosSoftware/scidec","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EngosSoftware%2Fscidec","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EngosSoftware%2Fscidec/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EngosSoftware%2Fscidec/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EngosSoftware%2Fscidec/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/EngosSoftware","download_url":"https://codeload.github.com/EngosSoftware/scidec/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EngosSoftware%2Fscidec/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29485033,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-15T15:33:17.885Z","status":"ssl_error","status_checked_at":"2026-02-15T15:32:53.698Z","response_time":118,"last_error":"SSL_read: 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":"2024-11-08T23:33:55.289Z","updated_at":"2026-02-15T17:05:12.287Z","avatar_url":"https://github.com/EngosSoftware.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Number converter from scientific notation\n\n[![Crates.io][crates-badge]][crates-url]\n[![MIT licensed][mit-badge]][mit-url]\n[![Apache 2.0 licensed][apache-badge]][apache-url]\n[![Contributor Covenant][coc-badge]][coc-url]\n\n[crates-badge]: https://img.shields.io/crates/v/scidec.svg\n[crates-url]: https://crates.io/crates/scidec\n[mit-badge]: https://img.shields.io/badge/License-MIT-blue.svg\n[mit-url]: LICENSE-MIT\n[mit-license-url]: https://github.com/DecisionToolkit/dsntk-rs/blob/main/LICENSE-MIT\n[apache-badge]: https://img.shields.io/badge/License-Apache%202.0-blue.svg\n[apache-url]: LICENSE\n[apache-license-url]: https://github.com/DecisionToolkit/dsntk-rs/blob/main/LICENSE\n[apache-notice-url]: https://github.com/DecisionToolkit/dsntk-rs/blob/main/NOTICE\n[coc-badge]: https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg\n[coc-url]: CODE_OF_CONDUCT.md\n[repository-url]: https://github.com/EngosSoftware/scidec\n\n## Overview\n\nThis library converts the input text containing a number in scientific notation like:\n\n```text\n1234.5678e-2\n```\n\ninto a number, represented by the following tuple:\n\n```rust\n(sign, mantissa-hi-64-bits, mantissa-lo-64-bits, exponent)\n```\n\n## Example\n\n```rust\nuse scidec::{Number, number_from_string};\n\nlet result = number_from_string(\"1234.5678e-2\");\nmatch result {\n  Number::Fin(false, 0, 12345678, -6) =\u003e {}\n  _ =\u003e panic!()\n}\n```\n\n## License\n\nLicensed under either of\n\n- [MIT license][mit-url] (see [LICENSE-MIT][mit-license-url]) or\n- [Apache License, Version 2.0][apache-url] (see [LICENSE][apache-license-url] and [NOTICE][apache-notice-url])\n\nat your option.\n\n## Contribution\n\nAny contributions to [**scidec**][repository-url] are greatly appreciated.\nAll contributions intentionally submitted for inclusion in the work by you,\nshall be dual licensed as above, without any additional terms or conditions.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fengossoftware%2Fscidec","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fengossoftware%2Fscidec","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fengossoftware%2Fscidec/lists"}