├── .gitignore ├── README.md ├── Rakefile ├── interop.rb ├── rust_interop.rb └── src └── interop.rs /.gitignore: -------------------------------------------------------------------------------- 1 | *.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domgetter/ruby-rust-interop/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domgetter/ruby-rust-interop/HEAD/Rakefile -------------------------------------------------------------------------------- /interop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domgetter/ruby-rust-interop/HEAD/interop.rb -------------------------------------------------------------------------------- /rust_interop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domgetter/ruby-rust-interop/HEAD/rust_interop.rb -------------------------------------------------------------------------------- /src/interop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domgetter/ruby-rust-interop/HEAD/src/interop.rs --------------------------------------------------------------------------------