https://github.com/rust-rosetta/rust-rosetta
Implementing Rosetta Code problems in Rust.
https://github.com/rust-rosetta/rust-rosetta
hacktoberfest rosetta-code rust
Last synced: about 2 months ago
JSON representation
Implementing Rosetta Code problems in Rust.
- Host: GitHub
- URL: https://github.com/rust-rosetta/rust-rosetta
- Owner: rust-rosetta
- License: unlicense
- Created: 2013-12-05T05:19:05.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2023-10-16T11:32:36.000Z (over 2 years ago)
- Last Synced: 2024-04-21T09:34:39.233Z (almost 2 years ago)
- Topics: hacktoberfest, rosetta-code, rust
- Language: Rust
- Homepage:
- Size: 5.85 MB
- Stars: 708
- Watchers: 21
- Forks: 165
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# rust-rosetta #

A repository for completing [this issue on rust-lang/rust](https://github.com/rust-lang/rust/issues/10513). This repository contains minimal working code for many simple (and not so simple) tasks. New contributors and learners of the language are welcome. We will try to work with you to make the code more idiomatic if you'd like!
Development is done on the `nightly` channel of Rust. You can get this using [`rustup`](https://www.rustup.rs/).
This is a project for learning. If you're working on a problem and need some help? Drop by #rust-rosetta on [irc.mozilla.org](https://kiwiirc.com/client/irc.mozilla.org). *(Note: It's an asynchronous protocol, responses may be slow!)*
## Tasks Remaining ##
[List of Tasks Remaining](http://rosettacode.org/wiki/Reports:Tasks_not_implemented_in_Rust)
> Important: Not all `rust-rosetta` tasks exist in their current form on Rosetta Code. Please cross-check with this repository before you start. Alternatively, check out [rust-rosetta coverage](https://euclio.github.io/rosetta-coverage) to see an automatically generated report of which tasks have been implemented where.
### Coverage ###
The main crate contains a `coverage` binary that is useful for discovering
incomplete solutions, or finding solutions that are different from the version
posted to the Rosetta Code wiki. To see what commands are available:
```sh
$ cargo run --release --bin coverage -- --help
```
## Tasks Complete ##
All tasks that have been completed are listed (along with a link to the problem) in [`Cargo.toml`](./Cargo.toml)
## Contributing ##
Looking to contribute? Great! Take a look at [CONTRIBUTING.md](CONTRIBUTING.md) to get started.