From b8b3bb541f217a03766c609caa5be0a5b1779a2b Mon Sep 17 00:00:00 2001 From: x Date: Wed, 7 Jun 2023 13:58:24 +0200 Subject: [PATCH] TurboPFor : Rust bindings --- TurboPFor-Integer-Compression/rust/Cargo.toml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 TurboPFor-Integer-Compression/rust/Cargo.toml diff --git a/TurboPFor-Integer-Compression/rust/Cargo.toml b/TurboPFor-Integer-Compression/rust/Cargo.toml new file mode 100644 index 0000000..930bfbe --- /dev/null +++ b/TurboPFor-Integer-Compression/rust/Cargo.toml @@ -0,0 +1,11 @@ +[package] +authors = ["powturbo "] +build = "build.rs" +name = "ic" +version = "0.60.0" + +[dependencies] +rand = "0.8" + +[build-dependencies] +bindgen = "*"