src/ruby_array.rs in faster_path-0.1.5 vs src/ruby_array.rs in faster_path-0.1.6

- old
+ new

@@ -1,4 +1,7 @@ +use libc; +use std::mem; + #[repr(C)] pub struct RubyArray { len: libc::size_t, data: *const libc::c_void, }