Skip to content

Commit 8dc9493

Browse files
committed
Clippy, update version
1 parent 18202f7 commit 8dc9493

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ocaml"
3-
version = "1.0.0-beta.2"
3+
version = "1.0.0-beta.3"
44
authors = ["Zach Shipko <[email protected]>"]
55
readme = "README.md"
66
keywords = ["ocaml", "rust", "ffi"]

build/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ocaml-build"
3-
version = "1.0.0-beta.2"
3+
version = "1.0.0-beta.3"
44
edition = "2021"
55
authors = ["Zach Shipko <[email protected]>"]
66
license = "ISC"

derive/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ocaml-derive"
3-
version = "1.0.0-beta.2"
3+
version = "1.0.0-beta.3"
44
authors = ["Zach Shipko <[email protected]>"]
55
license = "ISC"
66
keywords = ["ocaml-rs", "proc-macro"]

src/value.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ impl From<Raw> for sys::Value {
5656

5757
impl From<sys::Value> for Value {
5858
fn from(v: sys::Value) -> Self {
59-
unsafe { Value::Root(Root::new(v.into())) }
59+
unsafe { Value::Root(Root::new(v)) }
6060
}
6161
}
6262

0 commit comments

Comments
 (0)