Files
el/engram/engrams/engram-jni/Cargo.toml
T
Will Anderson 909c1577f1 rename crates/ to engrams/, bindings/ to receptors/
- crates/ → engrams/ (Rust engrams live here)
- bindings/ → receptors/ (cross-language access points into the graph)
- Cargo.toml workspace paths updated
2026-04-29 03:27:33 -05:00

20 lines
370 B
TOML

[package]
name = "engram-jni"
version = "0.1.0"
edition = "2021"
description = "JNI bindings for engram-core (Kotlin/Android)"
license = "MIT"
[lib]
name = "engram_jni"
crate-type = ["cdylib"]
[dependencies]
engram-core = { path = "../engram-core" }
jni = "0.21"
uuid = { version = "1", features = ["v4", "serde"] }
serde_json = "1"
[dev-dependencies]
tempfile = "3"