aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
blob: 913294ded29c0e1c8b8201a947ec1ac0db001385 (plain)
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
32
33
34
35
36
37
38
[package]
authors = ["Josh Chase <josh@prevoty.com>"]
description = "Rust bindings to the JNI"
documentation = "https://docs.rs/jni"
readme = "README.md"
keywords = [
    "ffi",
    "jni",
    "java",
]
categories = ["api-bindings"]
license = "MIT/Apache-2.0"
name = "jni"
repository = "https://github.com/jni-rs/jni-rs"
# ¡When bumping version please also update it in examples and documentation!
version = "0.20.0"
edition = "2018"

[dependencies]
cesu8 = "1.1.0"
combine = "4.1.0"
jni-sys = "0.3.0"
log = "0.4.4"
thiserror = "1.0.20"

[build-dependencies]
walkdir = "2"

[dev-dependencies]
lazy_static = "1"


[features]
invocation = []
default = []

[package.metadata.docs.rs]
features = ["invocation"]