Files
spacedrive/apps/mobile/crates/ios/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

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"