-
Notifications
You must be signed in to change notification settings - Fork 226
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
23 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "rustler" | ||
description = "Safe Rust wrappers for creating Erlang NIF functions" | ||
repository = "https://github.com/rusterlium/rustler" | ||
version = "0.32.1" # rustler version | ||
version = "0.33.0" # rustler version | ||
authors = ["Hansihe <[email protected]>"] | ||
license = "MIT/Apache-2.0" | ||
readme = "../README.md" | ||
|
@@ -22,8 +22,8 @@ nif_version_2_17 = ["nif_version_2_16", "rustler_sys/nif_version_2_17"] | |
serde = ["dep:serde"] | ||
|
||
[dependencies] | ||
rustler_codegen = { path = "../rustler_codegen", version = "0.32.1", optional = true} | ||
rustler_sys = { path = "../rustler_sys", version = "~2.4.0" } | ||
rustler_codegen = { path = "../rustler_codegen", version = "0.33.0", optional = true} | ||
rustler_sys = { path = "../rustler_sys", version = "~2.4.1" } | ||
num-bigint = { version = "0.4", optional = true } | ||
serde = { version = "1", optional = true } | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "rustler_codegen" | ||
description = "Compiler plugin for Rustler" | ||
repository = "https://github.com/rusterlium/rustler/tree/master/rustler_codegen" | ||
version = "0.32.1" # rustler_codegen version | ||
version = "0.33.0" # rustler_codegen version | ||
authors = ["Hansihe <[email protected]>"] | ||
license = "MIT/Apache-2.0" | ||
readme = "../README.md" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -170,5 +170,5 @@ defmodule Rustler do | |
end | ||
|
||
@doc false | ||
def rustler_version, do: "0.32.1" | ||
def rustler_version, do: "0.33.1" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ name = "rustler_sys" | |
# When depending on this crate, you should ALWAYS | ||
# use a tilde requirements with AT LEAST `~MAJOR.MINOR`. | ||
# Example: "~2.0" | ||
version = "2.4.0" | ||
version = "2.4.1" | ||
|
||
authors = ["Daniel Goertzen <[email protected]>"] | ||
description = "Create Erlang NIF modules in Rust using the C NIF API." | ||
|