-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
28 lines (25 loc) · 880 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
[package]
name = "android-build"
authors = [
"Kevin Boos <[email protected]>",
"Robius Project Maintainers",
]
description = """
A build-time dependency to compile Java source files for Android as part of a Rust build.
Use this from your `build.rs` Cargo build script.
"""
documentation = "https://docs.rs/android-build"
edition = "2021"
homepage = "https://robius.rs/"
keywords = ["android", "java", "build", "build-rs", "robius"]
categories = ["development-tools::build-utils"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/project-robius/android-build"
version = "0.1.0"
[dependencies]
## For finding the user's home directory on Windows.
[target.'cfg(target_os = "windows")'.dependencies.windows-sys]
version = "0.52"
default-features = false
features = [ "Win32_UI_Shell", "Win32_Foundation", "Win32_Globalization", "Win32_System_Com" ]