Skip to content

Commit 0b8fdb5

Browse files
committed
temporary dependency fix
1 parent d2b1844 commit 0b8fdb5

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "rustler"
33
description = "Safe Rust wrappers for creating Erlang NIF functions"
44
repository = "https://github.com/hansihe/Rustler"
5-
version = "0.8.0"
5+
version = "0.8.1"
66
authors = ["Hansihe <[email protected]>"]
77
license = "MIT/Apache-2.0"
88

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ The easiest way of getting started, is using the Mix project generator.
2525
* Run `mix archive.install https://github.com/hansihe/rustler_archives/raw/master/rustler_installer.ez` to install the tool.
2626
* Run `mix rustler.new <path>` and follow the instructions.
2727

28+
NOTE: At the moment you need Rust nightly-2016-04-05. With [multirust](https://github.com/brson/multirust), you need to run `multirust override nightly-2016-04-05` in the generated project directory for things to work as expected.
29+
2830
#### How it looks like
2931
This is the code for a minimal NIF that adds two numbers and returns the result.
3032
```rust

rustler_codegen/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
name = "rustler_codegen"
33
description = "Compiler plugin for Rustler"
44
repository = "https://github.com/hansihe/Rustler/tree/master/rustler_codegen"
5-
version = "0.8.0"
5+
version = "0.8.1"
66
authors = ["Hansihe <[email protected]>"]
77
license = "BSD-2-Clause"
88

99
[lib]
1010
plugin = true
1111

1212
[dependencies]
13-
easy-plugin = "0.3.0"
14-
aster = "0.14.0"
13+
easy-plugin = "=0.3.0"
14+
aster = "=0.14.0"
1515

1616
#[dependencies.aster]
1717
#path = "../../rustler_vendor/aster/"

0 commit comments

Comments
 (0)