From 98bd83c874aa6435dd63a003b4ce26d03056593e Mon Sep 17 00:00:00 2001 From: x Date: Fri, 31 Mar 2023 18:13:37 +0200 Subject: [PATCH] Rust binding --- rust/Cargo.toml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 rust/Cargo.toml diff --git a/rust/Cargo.toml b/rust/Cargo.toml new file mode 100644 index 0000000..38ca5b3 --- /dev/null +++ b/rust/Cargo.toml @@ -0,0 +1,11 @@ +[package] +authors = ["powturbo powturbo [AT] gmail.com>"] +build = "build.rs" +name = "ic" +version = "0.60.0" + +[dependencies] +rand = "0.8" + +[build-dependencies] +bindgen = "*"