mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-20 22:50:11 -04:00
20 lines
349 B
TOML
20 lines
349 B
TOML
[package]
|
|
name = "sd-core-android"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
rust-version = "1.64.0"
|
|
|
|
[lib]
|
|
# Android can use dynamic linking since all FFI is done via JNI
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
# FFI
|
|
jni = "0.19.0"
|
|
|
|
# Core mobile handling stuff
|
|
sd-core-mobile = { path = "../mobile", features = ["android"] }
|
|
|
|
# Other
|
|
tracing = "0.1.37"
|