Files
spacedrive/apps/mobile/crates/android/Cargo.toml
jake 5d3a156747 SPDX license and workspace inheritence for re-used metadata (#833)
use workspace inheritence for license, edition and repo URL
2023-05-20 01:52:55 +00:00

22 lines
421 B
TOML

[package]
name = "sd-mobile-android"
version = "0.1.0"
rust-version = "1.64.0"
license.workspace = true
repository.workspace = true
edition.workspace = true
[lib]
# Android can use dynamic linking since all FFI is done via JNI
crate-type = ["cdylib"]
[target.'cfg(target_os = "android")'.dependencies]
# FFI
jni = "0.19.0"
# Core mobile handling stuff
sd-mobile-core = { path = "../core" }
# Other
tracing = "0.1.37"