forked from gedgygedgy/jni-utils-rs
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (26 loc) · 733 Bytes
/
Cargo.toml
File metadata and controls
31 lines (26 loc) · 733 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "jni-utils"
version = "0.1.1"
authors = ["Gedgy Gedgy <gedgygedgy@protonmail.com>", "Kyle Machulis <kyle@nonpolynomial.com>"]
edition = "2021"
license = "BSD-3-Clause"
description = "Extra Utilities for JNI in Rust"
readme = "README.md"
repository = "https://github.com/deviceplug/jni-utils-rs"
homepage = "https://github.com/deviceplug/jni-utils-rs"
[lib]
path = "rust/lib.rs"
[features]
build-java-support = []
[dependencies]
# This needs to stay at 0.19.0 until we either update for the new jni-rs or move off this library
# entirely.
jni = "0.19.0"
static_assertions = "1.1.0"
uuid = "1.4.0"
futures = "0.3.28"
dashmap = "5.4.0"
once_cell = "1.18.0"
log = "0.4.19"
[dev-dependencies]
lazy_static = "1.4.0"