Skip to content

Commit

Permalink
Clippy, update version
Browse files Browse the repository at this point in the history
  • Loading branch information
zshipko committed Aug 7, 2022
1 parent 18202f7 commit 8dc9493
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ocaml"
version = "1.0.0-beta.2"
version = "1.0.0-beta.3"
authors = ["Zach Shipko <[email protected]>"]
readme = "README.md"
keywords = ["ocaml", "rust", "ffi"]
Expand Down
2 changes: 1 addition & 1 deletion build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ocaml-build"
version = "1.0.0-beta.2"
version = "1.0.0-beta.3"
edition = "2021"
authors = ["Zach Shipko <[email protected]>"]
license = "ISC"
Expand Down
2 changes: 1 addition & 1 deletion derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ocaml-derive"
version = "1.0.0-beta.2"
version = "1.0.0-beta.3"
authors = ["Zach Shipko <[email protected]>"]
license = "ISC"
keywords = ["ocaml-rs", "proc-macro"]
Expand Down
2 changes: 1 addition & 1 deletion src/value.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ impl From<Raw> for sys::Value {

impl From<sys::Value> for Value {
fn from(v: sys::Value) -> Self {
unsafe { Value::Root(Root::new(v.into())) }
unsafe { Value::Root(Root::new(v)) }
}
}

Expand Down

0 comments on commit 8dc9493

Please sign in to comment.