diff options
Diffstat (limited to '.template/Cargo.toml')
| -rw-r--r-- | .template/Cargo.toml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.template/Cargo.toml b/.template/Cargo.toml new file mode 100644 index 0000000..1997d0d --- /dev/null +++ b/.template/Cargo.toml @@ -0,0 +1,13 @@ +[package] +authors = ["{{authors}}"] +name = "{{project-name}}" +version = "0.1.0" +edition = "2021" + +[lib] +name = "hydrorolldemo" +crate-type = ["cdylib"] + +[dependencies] +pyo3 = { version = "{{PYO3_VERSION}}", features = ["extension-module"] } +rayon = "1.0.2" |
