Skip to content

Commit

Permalink
feat: JNI bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
luckasRanarison committed Nov 19, 2024
1 parent cf7beb7 commit 7cfc928
Show file tree
Hide file tree
Showing 5 changed files with 417 additions and 5 deletions.
253 changes: 249 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[workspace]
members = ["crates/mes-core", "crates/mes-wasm"]
members = ["crates/mes-core", "crates/mes-jni", "crates/mes-wasm"]
resolver = "2"
11 changes: 11 additions & 0 deletions crates/mes-jni/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[package]
name = "mes-jni"
version = "0.1.0"
edition = "2021"

[dependencies]
jni = "0.21.1"
mes-core = { path = "../mes-core" }

[lib]
crate-type = ["cdylib"]
Loading

0 comments on commit 7cfc928

Please sign in to comment.