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

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

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

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

tonic = "0.3.1"
tower = "0.3"
prost = "0.6"

[build-dependencies]
tonic-build = { version = "0.3", 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"