{"id":13636748,"url":"https://github.com/GuillaumeGomez/rust-GSL","last_synced_at":"2025-04-19T08:33:13.497Z","repository":{"id":19126869,"uuid":"22356309","full_name":"GuillaumeGomez/rust-GSL","owner":"GuillaumeGomez","description":"A GSL (the GNU Scientific Library) binding for Rust","archived":false,"fork":false,"pushed_at":"2024-04-15T21:05:24.000Z","size":2168,"stargazers_count":190,"open_issues_count":13,"forks_count":46,"subscribers_count":10,"default_branch":"master","last_synced_at":"2024-10-08T21:04:35.706Z","etag":null,"topics":["bindings","gsl","gsl-library","rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/GuillaumeGomez.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":null,"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":["GuillaumeGomez"],"patreon":"GuillaumeGomez","custom":["https://paypal.me/imperioland"]}},"created_at":"2014-07-28T20:13:27.000Z","updated_at":"2024-09-01T20:47:48.000Z","dependencies_parsed_at":"2022-07-21T07:00:24.579Z","dependency_job_id":"c6e5a862-3576-4505-9f55-722c258088e7","html_url":"https://github.com/GuillaumeGomez/rust-GSL","commit_stats":{"total_commits":456,"total_committers":22,"mean_commits":"20.727272727272727","dds":"0.16666666666666663","last_synced_commit":"492ccdcb2c13527f8728b62776f163f04ab3d8b4"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GuillaumeGomez%2Frust-GSL","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GuillaumeGomez%2Frust-GSL/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GuillaumeGomez%2Frust-GSL/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GuillaumeGomez%2Frust-GSL/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GuillaumeGomez","download_url":"https://codeload.github.com/GuillaumeGomez/rust-GSL/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":223714493,"owners_count":17190675,"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":["bindings","gsl","gsl-library","rust"],"created_at":"2024-08-02T00:01:04.798Z","updated_at":"2024-11-09T06:30:52.671Z","avatar_url":"https://github.com/GuillaumeGomez.png","language":"Rust","funding_links":["https://github.com/sponsors/GuillaumeGomez","https://patreon.com/GuillaumeGomez","https://paypal.me/imperioland"],"categories":["Libraries","库 Libraries"],"sub_categories":["Computation","计算 Computation"],"readme":"# rust-GSL\n\nA __Rust__ binding for the [GSL library][GSL library] (the GNU Scientific Library).\n\nThe minimum support Rust version is __1.54__.\n\n## Installation\n\nThis binding requires the [GSL library] library (version \u003e= 2) to be installed:\n\n### Linux\n\n```bash\n# on debian based systems:\nsudo apt-get install libgsl0-dev\n```\n\n### macOS\n\n```bash\nbrew install gsl\n```\n\n#### Apple silicon\n\nHomebrew installs libraries under `/opt/homebrew/include` on Apple silicon\nto [maintain backward compatibility with Rosetta 2](https://docs.brew.sh/FAQ#why-is-the-default-installation-prefix-opthomebrew-on-apple-silicon). \n\nAfter `gsl` has been installed in the usual way, use\nthe [environment variable](https://doc.rust-lang.org/cargo/reference/environment-variables.html):\n\n```bash\nRUSTFLAGS='-L /opt/homebrew/include'\n```\n\nbefore `cargo run`, `cargo build`, etc., to tell the compiler where `gsl` is located.\n\n### Windows\n\nInstructions are available there: \u003chttps://www.gnu.org/software/gsl/extras/native_win_builds.html\u003e.\n\n## Usage\n\nThis crate works with Cargo and is on [crates.io]. Just add the following to your `Cargo.toml` file:\n\n```toml\n[dependencies]\nGSL = \"7.0\"\n```\n\nYou can see examples in the `examples` folder.\n\n## Building\n\nTo build `rgsl`, just run `cargo build`. However, if you want to use a specific version, you'll\nneed to use the `cargo` features. For example:\n\n```bash\ncargo build --features v2_1\n```\n\nIf a project depends on this version, don't forget to add in your `Cargo.toml`:\n\n```toml\n[dependencies.GSL]\nversion = \"2\"\nfeatures = [\"v2_1\"]\n```\n\n## Documentation\n\nYou can access the __rgsl__ documentation locally, just build it:\n\n```shell\n\u003e cargo doc --open\n```\n\nYou can also access the latest build of the documentation via the internet [here](https://docs.rs/crate/GSL/).\n\n## License\n\n__rust-GSL__ is a wrapper for __GSL__, therefore inherits the [GPL license](http://www.gnu.org/copyleft/gpl.html).\n\n[crates.io]: https://crates.io/crates/GSL\n[GSL library]: http://www.gnu.org/software/gsl/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FGuillaumeGomez%2Frust-GSL","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FGuillaumeGomez%2Frust-GSL","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FGuillaumeGomez%2Frust-GSL/lists"}