forked from duchess-rs/duchess
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (28 loc) · 771 Bytes
/
Cargo.toml
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
[workspace]
[workspace.package]
version = "0.1.6"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/duchess-rs/duchess"
homepage = "https://duchess-rs.github.io/duchess/"
[package]
name = "duchess"
version.workspace = true
edition = "2021"
license.workspace = true
repository.workspace = true
description = "Silky smooth Java-Rust interop"
readme = "README.md"
[dependencies]
derive_more = "0.99.17"
duchess-macro = { path = "macro", version = "0.1.6" }
jni-sys = "0.3.0"
cesu8 = "1.1.0"
once_cell = "1.17.1"
thiserror = "1.0.40"
tracing = "0.1.37"
java-locator = { version = "0.1.3", optional = true }
libloading = { version = "0.8.0", optional = true }
derive-where = "1.2.1"
[features]
default = ["dylibjvm"]
dylibjvm = ["java-locator", "libloading"]