blob: 519f7852c92488287688858e2df361a0cb65b107 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
[package]
name = "mullvad-ios"
description = "Entry point for all FFI code on iOS"
authors.workspace = true
repository.workspace = true
license.workspace = true
edition.workspace = true
rust-version.workspace = true
[lints]
workspace = true
[features]
# Allow the API server to be used
api-override = ["mullvad-api/api-override"]
[target.'cfg(target_os = "ios")'.dependencies]
futures = { workspace = true }
libc = "0.2"
log = { workspace = true }
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
tonic = { workspace = true }
hyper = { version = "1.4.1", features = ["client", "http1"] }
hyper-util = { workspace = true }
tower = { workspace = true }
tunnel-obfuscation = { path = "../tunnel-obfuscation" }
oslog = "0.2"
talpid-future = { path = "../talpid-future" }
talpid-types = { path = "../talpid-types" }
talpid-tunnel-config-client = { path = "../talpid-tunnel-config-client" }
mullvad-encrypted-dns-proxy = { path = "../mullvad-encrypted-dns-proxy" }
mullvad-api = { path = "../mullvad-api", default-features = false }
mullvad-types = { path = "../mullvad-types" }
serde_json = { workspace = true }
mockito = "1.6.1"
async-trait = "0.1"
shadowsocks-service = { workspace = true, features = [
"local",
"stream-cipher",
"local-http",
"local-tunnel",
] }
[target.'cfg(target_os = "macos")'.build-dependencies]
cbindgen = { version = "0.28.0", default-features = false }
[lib]
crate-type = ["staticlib"]
bench = false
|