-
Notifications
You must be signed in to change notification settings - Fork 384
/
Copy pathCargo.toml
59 lines (47 loc) · 1.62 KB
/
Cargo.toml
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
51
52
53
54
55
56
57
58
59
[package]
name = "talpid-openvpn-plugin"
description = "OpenVPN shared library plugin for relaying OpenVPN events to talpid_core"
authors.workspace = true
repository.workspace = true
license.workspace = true
edition.workspace = true
rust-version.workspace = true
[lints]
workspace = true
[lib]
crate-type = ["cdylib"]
[dependencies]
thiserror = { workspace = true }
log = { workspace = true }
env_logger = { workspace = true }
openvpn-plugin = { version = "0.4.2", features = ["serde", "log", "auth-failed-event"] }
talpid-types = { path = "../talpid-types" }
tokio = { workspace = true, features = ["rt"] }
parity-tokio-ipc = { workspace = true }
tonic = { workspace = true }
tower = { workspace = true }
prost = { workspace = true }
hyper-util = { workspace = true }
futures = { workspace = true }
[build-dependencies]
tonic-build = { workspace = true, default-features = false, features = ["transport", "prost"] }
[target.'cfg(windows)'.build-dependencies]
winres = "0.1"
mullvad-version = { path = "../mullvad-version" }
[target.'cfg(windows)'.build-dependencies.windows-sys]
workspace = true
features = [
"Win32_System_SystemServices",
]
[target.'cfg(windows)'.dependencies]
# parity-tokio-ipc has an implicit dependency on winapi's winerror feature.
winapi = { version = "0.3", features = ["winerror"] }
[package.metadata.winres]
ProductName = "Mullvad VPN"
CompanyName = "Mullvad VPN AB"
LegalCopyright = "(c) 2025 Mullvad VPN AB"
InternalName = "talpid-openvpn-plugin"
OriginalFilename = "talpid_openvpn_plugin.dll"
# TODO: Remove this once ARM64 Windows no longer requires x64 talpid_openvpn_plugin
[features]
api-override = []