From b58b03c22d637fe8f7200edb6953325bf359544d Mon Sep 17 00:00:00 2001 From: Nathan Perry Date: Wed, 7 Aug 2024 07:39:16 -0400 Subject: split calc into separate subcrate --- calc/Cargo.toml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 calc/Cargo.toml (limited to 'calc/Cargo.toml') diff --git a/calc/Cargo.toml b/calc/Cargo.toml new file mode 100644 index 0000000..fe2ecc3 --- /dev/null +++ b/calc/Cargo.toml @@ -0,0 +1,14 @@ +[package] +name = "thulani_calc" +version = "0.1.0" +authors.workspace = true +edition.workspace = true + +[dependencies] +pest = "2.7" +pest_derive = "2.7" +thiserror = "1.0" +statrs = "0.16" + +lazy_static.workspace = true +rand.workspace = true -- cgit v1.3.1