-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (25 loc) · 859 Bytes
/
Cargo.toml
File metadata and controls
27 lines (25 loc) · 859 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
[package]
name = "robius-android-env"
version = "0.2.0"
edition = "2021"
authors = [
"Kevin Boos <kevinaboos@gmail.com>",
"Project Robius Maintainers",
]
description = "Rust access to Android state (native Java objects) managed by UI toolkits"
documentation = "https://docs.rs/robius-android-env"
homepage = "https://robius.rs/"
keywords = ["robius", "android", "environment", "java", "jni"]
categories = ["gui", "os", "os::android-apis"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/project-robius/robius-android-env"
[dependencies]
jni = "0.21.1"
makepad-android-state = { version = "0.1.0", optional = true }
ndk-context = {version = "0.1.0", optional = true }
[features]
default = ["ndk-context"]
## Set this feature when building a Makepad app.
makepad = ["dep:makepad-android-state"]
ndk-context = ["dep:ndk-context"]