mirror of
https://github.com/hexedtech/jni-toolbox.git
synced 2025-02-14 06:18:45 +01:00
23 lines
477 B
TOML
23 lines
477 B
TOML
[workspace]
|
|
members = ["macro", "src/test"]
|
|
|
|
[package]
|
|
name = "jni-toolbox"
|
|
description = "tools to make writing JNI native functions less tiresome"
|
|
repository = "https://github.com/hexedtech/jni-toolbox"
|
|
authors = [
|
|
"alemi <me@alemi.dev>",
|
|
"zaaarf <me@zaaarf.foo>"
|
|
]
|
|
license = "GPL-3.0-only"
|
|
version = "0.2.2"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
jni-toolbox-macro = "0.2.2"
|
|
jni = "0.21"
|
|
uuid = { version = "1.10", optional = true }
|
|
|
|
[features]
|
|
default = []
|
|
uuid = ["dep:uuid"]
|