Java bindings (#147)

This commit is contained in:
Burak
2024-02-18 17:21:58 +01:00
committed by GitHub
parent 8d282f1ffd
commit bdb2aba596
10 changed files with 677 additions and 1 deletions

17
bindings/java/Cargo.toml Normal file
View File

@@ -0,0 +1,17 @@
[package]
name = "regorus-java"
version = "0.1.0"
edition = "2021"
repository = "https://github.com/microsoft/regorus/bindings/java"
description = "Java bindings for Regorus - a fast, lightweight Rego interpreter written in Rust"
keywords = ["interpreter", "opa", "policy-as-code", "rego"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib"]
[dependencies]
anyhow = "1.0.79"
serde_json = "1.0.112"
jni = "0.21.1"
regorus = { path = "../.." }