-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathCargo.toml
26 lines (23 loc) · 859 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
[package]
name = "robusta_jni"
version = "0.2.2"
authors = ["Giovanni Berti <[email protected]>"]
repository = "https://github.com/giovanniberti/robusta"
description = "Easy interop between Rust and Java"
keywords = ["ffi", "jni", "java"]
license = "MIT"
edition = "2018"
readme = "README.md"
categories = ["development-tools::ffi", "api-bindings"]
exclude = ["/robusta-codegen", "/robusta-example", "README.md", "/robusta-android-example"]
documentation = "https://docs.rs/robusta/"
[dependencies]
robusta-codegen = { version = "0.2", path = "./robusta-codegen" }
jni = "^0.20"
paste = "^1"
static_assertions = "^1"
[dev-dependencies]
native = { path = "./tests/driver/native" }
jni = { version = "^0.20", features = ["invocation"] }
[workspace]
members = ["robusta-codegen", "robusta-example", "tests/driver/native", "robusta-android-example"]