jni-toolbox/Cargo.toml

24 lines
477 B
TOML
Raw Normal View History

[workspace]
2024-09-24 01:58:10 +02:00
members = ["macro", "src/test"]
2024-09-21 17:00:54 +02:00
[package]
name = "jni-toolbox"
description = "tools to make writing JNI native functions less tiresome"
2024-09-22 01:56:11 +02:00
repository = "https://github.com/hexedtech/jni-toolbox"
2024-09-21 17:00:54 +02:00
authors = [
2024-09-26 02:14:34 +02:00
"alemi <me@alemi.dev>",
"zaaarf <me@zaaarf.foo>"
2024-09-21 17:00:54 +02:00
]
license = "GPL-3.0-only"
2024-09-26 02:14:34 +02:00
version = "0.2.1"
2024-09-21 17:00:54 +02:00
edition = "2021"
[dependencies]
2024-09-26 02:14:34 +02:00
jni-toolbox-macro = "0.2.1"
jni = "0.21"
2024-09-22 16:41:11 +02:00
uuid = { version = "1.10", optional = true }
2024-09-23 18:00:31 +02:00
[features]
default = []
uuid = ["dep:uuid"]