-
Notifications
You must be signed in to change notification settings - Fork 24
/
vcpkg.json
42 lines (42 loc) · 1.21 KB
/
vcpkg.json
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
{
"name": "functions-framework-cpp-dev",
"version-string": "1.2.0",
"homepage": "https://github.com/GoogleCloudPlatform/functions-framework-cpp/",
"description": [
"A functions as a service (FaaS) framework for writing portable C++ functions.",
"Let's you write lightweight functions that run in many different environments,",
"including local development, local containers, Knative, and Cloud Run."
],
"default-features": ["framework"],
"features": {
"framework": {
"description": "Everything needed to use the Functions Framework for C++",
"dependencies": [
"abseil",
"boost-beast",
"boost-program-options",
"boost-serialization",
"nlohmann-json"
]
},
"tests": {
"description": "Unit and Integrations tests for functions-framework-cpp.",
"dependencies": [
"boost-filesystem",
"boost-log",
"boost-process",
"boost-uuid",
"cppcodec",
"fmt",
"gtest"
]
},
"examples": {
"description": "Unit and Integration tests for the functions-framework-cpp examples.",
"dependencies": [
"boost-property-tree",
"google-cloud-cpp"
]
}
}
}