-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmcpplibs.tinyhttps.lua
More file actions
44 lines (43 loc) · 1.94 KB
/
mcpplibs.tinyhttps.lua
File metadata and controls
44 lines (43 loc) · 1.94 KB
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
-- Form A descriptor: the upstream repo ships its own mcpp.toml from
-- v0.2.1 onwards, so we omit the `mcpp` field — mcpp default-look-up
-- finds <verdir>/<repo-tag>/mcpp.toml inside the GitHub tarball wrap.
package = {
spec = "1",
name = "mcpplibs.tinyhttps",
description = "Minimal C++23 HTTP/HTTPS client with SSE streaming support",
licenses = {"Apache-2.0"},
repo = "https://github.com/mcpplibs/tinyhttps",
type = "package",
xpm = {
linux = {
["0.2.1"] = {
url = "https://github.com/mcpplibs/tinyhttps/archive/refs/tags/0.2.1.tar.gz",
sha256 = "88adc68b1c1ec635c409604547fdfe8486aa1b376bad28c74858ed1f3ce5391c",
},
["0.2.2"] = {
url = "https://github.com/mcpplibs/tinyhttps/archive/refs/tags/0.2.2.tar.gz",
sha256 = "bc4cb59475826a975dd0408b59a00cf41c4aa4078a0fc2e54929bde7fb696248",
},
},
macosx = {
["0.2.1"] = {
url = "https://github.com/mcpplibs/tinyhttps/archive/refs/tags/0.2.1.tar.gz",
sha256 = "88adc68b1c1ec635c409604547fdfe8486aa1b376bad28c74858ed1f3ce5391c",
},
["0.2.2"] = {
url = "https://github.com/mcpplibs/tinyhttps/archive/refs/tags/0.2.2.tar.gz",
sha256 = "bc4cb59475826a975dd0408b59a00cf41c4aa4078a0fc2e54929bde7fb696248",
},
},
windows = {
["0.2.1"] = {
url = "https://github.com/mcpplibs/tinyhttps/archive/refs/tags/0.2.1.tar.gz",
sha256 = "88adc68b1c1ec635c409604547fdfe8486aa1b376bad28c74858ed1f3ce5391c",
},
["0.2.2"] = {
url = "https://github.com/mcpplibs/tinyhttps/archive/refs/tags/0.2.2.tar.gz",
sha256 = "bc4cb59475826a975dd0408b59a00cf41c4aa4078a0fc2e54929bde7fb696248",
},
},
},
}