summaryrefslogtreecommitdiffhomepage
path: root/talpid-openvpn-plugin/Cargo.toml
blob: e68a4562b37b40f7d35d41c665e3d80be2ec7e08 (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
[package]
name = "talpid-openvpn-plugin"
version = "2021.6.0"
authors = ["Mullvad VPN"]
description = "OpenVPN shared library plugin for relaying OpenVPN events to talpid_core"
license = "GPL-3.0"
edition = "2021"
publish = false

[lib]
crate-type = ["cdylib"]

[dependencies]
err-derive = "0.3.0"
log = "0.4"
env_logger = "0.8.2"
parity-tokio-ipc = "0.9"
tokio = { version = "1.8", features =  [ "rt" ] }

openvpn-plugin = { version = "0.4", features = ["serde", "log", "auth-failed-event"] }
talpid-types = { path = "../talpid-types" }

tonic = "0.5"
tower = "0.4"
prost = "0.8"

[build-dependencies]
tonic-build = { version = "0.5", default-features = false, features = ["transport", "prost"] }


[target.'cfg(windows)'.build-dependencies]
winres = "0.1"
winapi = "0.3"

[package.metadata.winres]
ProductName = "Mullvad VPN"
CompanyName = "Mullvad VPN AB"
LegalCopyright = "(c) 2021 Mullvad VPN AB"
InternalName = "talpid-openvpn-plugin"
OriginalFilename = "talpid_openvpn_plugin.dll"