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
|
{
"name": "glib-networking",
"version": "2.78.0",
"description": "Network extensions for GLib",
"homepage": "https://gitlab.gnome.org/GNOME/glib-networking",
"license": "LGPL-2.1-only",
"supports": "!uwp",
"dependencies": [
"glib",
{
"name": "glib",
"host": true
},
{
"name": "vcpkg-tool-meson",
"host": true
}
],
"default-features": [
{
"name": "gnutls",
"platform": "linux | mingw"
},
{
"name": "openssl",
"platform": "!linux & !mingw"
}
],
"features": {
"environment-proxy": {
"description": "support for environment variable proxy configuration"
},
"gnutls": {
"description": "support for GnuTLS networking configuration",
"supports": "!windows | mingw",
"dependencies": [
"libgnutls"
]
},
"libproxy": {
"description": "support for libproxy proxy configuration",
"supports": "!(uwp | xbox | android)",
"dependencies": [
"libproxy"
]
},
"openssl": {
"description": "support for OpenSSL networking configuration",
"dependencies": [
"openssl"
]
}
}
}
|