{"id":16847940,"url":"https://github.com/stepancheg/rust-ide-rust","last_synced_at":"2025-07-21T09:32:05.165Z","repository":{"id":10113873,"uuid":"12180525","full_name":"stepancheg/rust-ide-rust","owner":"stepancheg","description":"Patches for rust-ide","archived":false,"fork":false,"pushed_at":"2014-07-05T12:03:36.000Z","size":123256,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-12T07:32:51.358Z","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":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/stepancheg.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE-APACHE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-08-17T14:55:39.000Z","updated_at":"2020-06-13T02:59:49.000Z","dependencies_parsed_at":"2022-08-17T15:41:09.583Z","dependency_job_id":null,"html_url":"https://github.com/stepancheg/rust-ide-rust","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/stepancheg/rust-ide-rust","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stepancheg%2Frust-ide-rust","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stepancheg%2Frust-ide-rust/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stepancheg%2Frust-ide-rust/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stepancheg%2Frust-ide-rust/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stepancheg","download_url":"https://codeload.github.com/stepancheg/rust-ide-rust/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stepancheg%2Frust-ide-rust/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266275941,"owners_count":23903954,"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-13T13:09:27.121Z","updated_at":"2025-07-21T09:32:05.143Z","avatar_url":"https://github.com/stepancheg.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# The Rust Programming Language\n\nThis is a compiler for Rust, including standard libraries, tools and\ndocumentation.\n\n## Quick Start\n\n1. Download a [binary installer][installer] for your platform.\n2. Read the [tutorial].\n3. Enjoy!\n\n\u003e ***Note:*** Windows users can read the detailed\n\u003e [getting started][wiki-start] notes on the wiki.\n\n[installer]: http://www.rust-lang.org/install.html\n[tutorial]: http://doc.rust-lang.org/tutorial.html\n[wiki-start]: https://github.com/rust-lang/rust/wiki/Note-getting-started-developing-Rust\n[win-wiki]: https://github.com/rust-lang/rust/wiki/Using-Rust-on-Windows\n\n## Building from Source\n\n1. Make sure you have installed the dependencies:\n    * `g++` 4.7 or `clang++` 3.x\n    * `python` 2.6 or later (but not 3.x)\n    * `perl` 5.0 or later\n    * GNU `make` 3.81 or later\n    * `curl`\n    * `git`\n2. Download and build Rust:\n\n    You can either download a [tarball] or build directly from the [repo].\n\n    To build from the [tarball] do:\n\n        $ curl -O http://static.rust-lang.org/dist/rust-nightly.tar.gz\n        $ tar -xzf rust-nightly.tar.gz\n        $ cd rust-nightly\n\n    Or to build from the [repo] do:\n\n        $ git clone https://github.com/rust-lang/rust.git\n        $ cd rust\n\n    Now that you have Rust's source code, you can configure and build it:\n\n        $ ./configure\n        $ make \u0026\u0026 make install\n\n    \u003e ***Note:*** You may need to use `sudo make install` if you do not normally have\n    \u003e permission to modify the destination directory. The install locations can\n    \u003e be adjusted by passing a `--prefix` argument to `configure`. Various other\n    \u003e options are also supported, pass `--help` for more information on them.\n\n    When complete, `make install` will place several programs into\n    `/usr/local/bin`: `rustc`, the Rust compiler, and `rustdoc`, the\n    API-documentation tool.\n3. Read the [tutorial].\n4. Enjoy!\n\n### Building on Windows\n\nTo easily build on windows we can use [MSYS2](http://sourceforge.net/projects/msys2/):\n\n1. Grab the latest MSYS2 installer and go through the installer.\n2. Now from the MSYS2 terminal we want to install the mingw64 toolchain and the other\n   tools we need.\n\n        $ pacman -S mingw-w64-i686-toolchain\n        $ pacman -S base-devel\n\n3. With that now start `mingw32_shell.bat` from where you installed MSYS2 (i.e. `C:\\msys`).\n4. From there just navigate to where you have Rust's source code, configure and build it:\n\n        $ ./configure --build=i686-pc-mingw32\n        $ make \u0026\u0026 make install\n\n[repo]: https://github.com/rust-lang/rust\n[tarball]: http://static.rust-lang.org/dist/rust-nightly.tar.gz\n[tutorial]: http://doc.rust-lang.org/tutorial.html\n\n## Notes\n\nSince the Rust compiler is written in Rust, it must be built by a\nprecompiled \"snapshot\" version of itself (made in an earlier state of\ndevelopment). As such, source builds require a connection to the Internet, to\nfetch snapshots, and an OS that can execute the available snapshot binaries.\n\nSnapshot binaries are currently built and tested on several platforms:\n\n* Windows (7, 8, Server 2008 R2), x86 only\n* Linux (2.6.18 or later, various distributions), x86 and x86-64\n* OSX 10.7 (Lion) or greater, x86 and x86-64\n\nYou may find that other platforms work, but these are our officially\nsupported build environments that are most likely to work.\n\nRust currently needs about 1.5 GiB of RAM to build without swapping; if it hits\nswap, it will take a very long time to build.\n\nThere is a lot more documentation in the [wiki].\n\n[wiki]: https://github.com/rust-lang/rust/wiki\n\n## License\n\nRust is primarily distributed under the terms of both the MIT license\nand the Apache License (Version 2.0), with portions covered by various\nBSD-like licenses.\n\nSee LICENSE-APACHE, LICENSE-MIT, and COPYRIGHT for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstepancheg%2Frust-ide-rust","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstepancheg%2Frust-ide-rust","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstepancheg%2Frust-ide-rust/lists"}