rustier 0.1.0

Make your R more Rusty! This crate lets you use a proc macro #[R_export] to make your Rust functions callable from R similar to what RCpp does for C. Still early in development. see the bottom of lib.rs for some examples of what can already be done though.
Documentation
[package]
name = "rustier"
version = "0.1.0"
authors = ["Hayley <github.com@codingcat.nl>"]
edition = "2018"
description = "Make your R more Rusty! This crate lets you use a proc macro #[R_export] to make your Rust functions callable from R similar to what RCpp does for C. Still early in development. see the bottom of lib.rs for some examples of what can already be done though."
license = "GPL-2.0+"
repository = "https://github.com/HayleyDeckers/rustier"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[lib]
name = "rustier"
crate-type = ["cdylib"]      # Creates dynamic lib

[dependencies]
num_enum = "0.5"
rustier-macros = {path = "./rustier-macros", version = "0.1"}
rayon = "1"