1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-22 15:39:07 +00:00
This commit is contained in:
Henry Case 2021-09-20 21:42:04 +01:00
parent cc8aecb298
commit 4048380e80
2 changed files with 2 additions and 0 deletions

View File

@ -8,6 +8,7 @@ build = "src/build.rs"
description = "Rust bindings for PQ CryptoCatalog" description = "Rust bindings for PQ CryptoCatalog"
license = "BSD-2-Clause" license = "BSD-2-Clause"
homepage = "github.com/henrydcase/pqc" homepage = "github.com/henrydcase/pqc"
repository = "github.com/henrydcase/pqc"
[build-dependencies] [build-dependencies]
cmake = "0.1.31" cmake = "0.1.31"

View File

@ -33,6 +33,7 @@ fn main() {
.generate() .generate()
// Unwrap the Result and panic on failure. // Unwrap the Result and panic on failure.
.expect("Unable to generate bindings"); .expect("Unable to generate bindings");
bindings bindings
.write_to_file("src/bindings.rs") .write_to_file("src/bindings.rs")
.expect("Couldn't write bindings"); .expect("Couldn't write bindings");