{"id":16489930,"url":"https://github.com/crowdagger/rust-ispell","last_synced_at":"2025-12-12T14:39:28.441Z","repository":{"id":62441186,"uuid":"69173821","full_name":"crowdagger/rust-ispell","owner":"crowdagger","description":"Rust library for easily calling ispell and aspell","archived":false,"fork":false,"pushed_at":"2020-07-04T01:08:21.000Z","size":650,"stargazers_count":13,"open_issues_count":1,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-04T15:40:18.873Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/crowdagger.png","metadata":{"files":{"readme":"README.md","changelog":"ChangeLog.md","contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-09-25T15:46:23.000Z","updated_at":"2024-08-28T09:47:40.000Z","dependencies_parsed_at":"2022-11-01T22:01:53.707Z","dependency_job_id":null,"html_url":"https://github.com/crowdagger/rust-ispell","commit_stats":null,"previous_names":["crowdagger/rust-ispell","lise-henry/rust-ispell"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/crowdagger/rust-ispell","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crowdagger%2Frust-ispell","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crowdagger%2Frust-ispell/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crowdagger%2Frust-ispell/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crowdagger%2Frust-ispell/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/crowdagger","download_url":"https://codeload.github.com/crowdagger/rust-ispell/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crowdagger%2Frust-ispell/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":27684871,"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","status":"online","status_checked_at":"2025-12-12T02:00:06.775Z","response_time":129,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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-10-11T13:45:52.467Z","updated_at":"2025-12-12T14:39:28.396Z","avatar_url":"https://github.com/crowdagger.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"rust-ispell \n===========\n\nThis library allows to easily use `ispell` or `aspell` from Rust.\n\nUsage\n-----\n\nAdd this to your `Cargo.toml`\n\n```toml\n[dependencies]\nispell = \"0.3\"\n```\n\nExample\n-------\n\n```rust\nextern crate ispell;\nuse ispell::SpellLauncher;\n\nfn main() {\n    let mut checker = SpellLauncher::new()\n        .aspell()\n        .dictionary(\"en_GB\")\n        .launch()\n        .unwrap();\n    let errors = checker.check(\"A simpel test to see if it detetcs typing errors\").unwrap();\n    for e in errors {\n        println!(\"'{}' (pos: {}) is misspelled!\", \u0026e.misspelled, e.position);\n        if !e.suggestions.is_empty() {\n            println!(\"Maybe you meant '{}'?\", \u0026e.suggestions[0]);\n        }\n    }\n}\n```\n\nwill display:\n\n```\n'simpel' (pos: 2) is misspelled!\nMaybe you meant 'simple'?\n'detetcs' (pos: 27) is misspelled!\nMaybe you meant 'dietetics'?\n```\n\n(*Yes*, that is exactly what I meant.)\n\nDocumentation\n-------------\n\nFor more information about using this library, see the\n[API documentation on Github.io](https://lise-henry.github.io/rust-ispell/ispell/)\nor on [docs.rs](https://docs.rs/releases/search?query=ispell).\n\nRequirements\n------------\n\n`rust-ispell` 0.3 requires the `1.12.0` (or a more recent) version of\nthe \n`rustc` compiler, since it uses the `std::sync::mpcs::Receiver::recv_timeout`\nthat was only stabilized in this version. \n\nChangeLog\n---------\n\nSee [ChangeLog.md](ChangeLog.md).\n\nLicense \n-------\n\n`rust-ispell` is free software, published under the\n[Mozilla Public License, version 2.0](https://www.mozilla.org/en-US/MPL/2.0/). \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcrowdagger%2Frust-ispell","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcrowdagger%2Frust-ispell","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcrowdagger%2Frust-ispell/lists"}