diff options
Diffstat (limited to 'native/thulani_calc/Cargo.toml')
| -rw-r--r-- | native/thulani_calc/Cargo.toml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/native/thulani_calc/Cargo.toml b/native/thulani_calc/Cargo.toml new file mode 100644 index 0000000..8ba8a75 --- /dev/null +++ b/native/thulani_calc/Cargo.toml @@ -0,0 +1,20 @@ +[package] +name = "thulani_calc" +version = "0.1.0" +authors = [] +edition = "2018" + +[lib] +name = "thulani_calc" +path = "src/lib.rs" +crate-type = ["cdylib"] + +[dependencies] +rustler = "0.26.0" +pest = "2.5" +pest_derive = "2.5" +lazy_static = "1.4" +statrs = "0.16" +thiserror = "1.0" +rand = "0.8" +log = "0.4" |
