mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-20 06:28:14 -04:00
27 lines
700 B
TOML
27 lines
700 B
TOML
[package]
|
|
name = "sd-mobile-core"
|
|
version = "0.1.0"
|
|
rust-version = "1.64.0"
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
once_cell = "1.15.0"
|
|
sd-core = { path = "../../../../core", features = [
|
|
"mobile",
|
|
], default-features = false }
|
|
rspc.workspace = true
|
|
serde_json = "1.0.85"
|
|
tokio = { workspace = true }
|
|
openssl = { version = "0.10.42", features = [
|
|
"vendored",
|
|
] } # Override features of transitive dependencies
|
|
openssl-sys = { version = "0.9.76", features = [
|
|
"vendored",
|
|
] } # Override features of transitive dependencies to support IOS Simulator on M1
|
|
futures = "0.3.24"
|
|
tracing = "0.1.37"
|
|
futures-channel = "0.3.28"
|
|
futures-locks = "0.7.1"
|