v0.0.0: init project template

Šī revīzija ir iekļauta:
AJ ONeal 2018-09-17 22:05:47 -06:00
revīzija 67f288c561
4 mainīti faili ar 45 papildinājumiem un 0 dzēšanām

2
.gitignore ārējs Parasts fails
Parādīt failu

@ -0,0 +1,2 @@
/target
**/*.rs.bk

6
Cargo.toml Parasts fails
Parādīt failu

@ -0,0 +1,6 @@
[package]
name = "grep"
version = "0.1.0"
authors = ["AJ ONeal <coolaj86@gmail.com>"]
[dependencies]

34
README.md Parasts fails
Parādīt failu

@ -0,0 +1,34 @@
grep.rs
=======
This is my personal exploration of the sample grep project in Chapter 12 of "The Rust Book".
Install Rust
------------
To run this project you first need to install rust:
```bash
curl https://sh.rustup.rs -sSf | sh
```
If you already have rust installed you can update it to the latest version like so:
```bash
restup update
```
Install grep.rs
---------------
```bash
git clone https://git.coolaj86.com/coolaj86/grep.rs
pushd rust.rs/
```
History
-------
```bash
cargo init --bin --name grep
```

3
src/main.rs Parasts fails
Parādīt failu

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}