mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-20 14:38:58 -04:00
25 lines
571 B
TOML
25 lines
571 B
TOML
[package]
|
|
name = "sd-mobile-ios"
|
|
version = "0.1.0"
|
|
rust-version = "1.64.0"
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
edition.workspace = true
|
|
|
|
|
|
[lib]
|
|
# iOS requires static linking
|
|
# Makes sense considering this lib needs to link against call_resolve and get_data_directory,
|
|
# which are only available when linking against the app's ObjC
|
|
crate-type = ["staticlib"]
|
|
|
|
[dependencies]
|
|
# Core mobile handling stuff
|
|
sd-mobile-core = { path = "../core" }
|
|
|
|
[target.'cfg(target_os = "ios")'.dependencies]
|
|
# FFI
|
|
objc = "0.2.7"
|
|
objc_id = "0.1.1"
|
|
objc-foundation = "0.1.1"
|