Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jackcmay authored Oct 30, 2018
1 parent 43fe791 commit 98cfa2d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# rbpf
# solana_rbpf

![](misc/rbpf_256.png)

Expand Down Expand Up @@ -46,29 +46,29 @@ file:

```toml
[dependencies]
rbpf = "0.1.1"
solana_rbpf = "0.1.1"
```

You can also use the development version from this GitHub repository. This
should be as simple as putting this inside your `Cargo.toml`:

```toml
[dependencies]
rbpf = { git = "https://github.com/solana-labs/rbpf" }
solana_rbpf = { git = "https://github.com/solana-labs/rbpf" }
```

Of course, if you prefer, you can clone it locally, possibly hack the crate,
and then indicate the path of your local version in `Cargo.toml`:

```toml
[dependencies]
rbpf = { path = "path/to/rbpf" }
solana_rbpf = { path = "path/to/solana_rbpf" }
```

Then indicate in your source code that you want to use the crate:

```rust,ignore
extern crate rbpf;
extern crate solana_rbpf;
```

## API
Expand Down

0 comments on commit 98cfa2d

Please sign in to comment.