Skip to content

Commit ec87d76

Browse files
committed
first version that runs all tests
0 parents  commit ec87d76

File tree

5 files changed

+1183
-0
lines changed

5 files changed

+1183
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/target
2+
Cargo.lock

Cargo.toml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[package]
2+
name = "libopaque-sys"
3+
version = "0.1.0"
4+
links = "libopaque"
5+
build = "build.rs"
6+
edition = "2021"
7+
8+
[dependencies]
9+
cc = { version = "1.0.72", features = ["parallel"] }
10+
libc = "0.2.109"
11+
libsodium-sys = "0.2.7"
12+
pkg-config = "0.3.23"

build.rs

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
fn main() {
2+
println!("cargo:rustc-link-lib=opaque");
3+
}

0 commit comments

Comments
 (0)