-
Notifications
You must be signed in to change notification settings - Fork 11
/
META.json.in
46 lines (46 loc) · 1.11 KB
/
META.json.in
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
{
"name": "pg_later",
"abstract": "Run queries now and get results later",
"description": "A postgres extension to execute queries asynchronously built on pgmq",
"version": "@CARGO_VERSION@",
"maintainer": [
"Tembo <[email protected]>"
],
"license": "postgresql",
"provides": {
"pg_later": {
"abstract": "Run queries now and get results later",
"file": "src/lib.rs",
"docfile": "README.md",
"version": "@CARGO_VERSION@"
}
},
"prereqs": {
"runtime": {
"requires": {
"PostgreSQL": "11.0.0",
"pgmq": "0.25.0"
}
}
},
"resources": {
"bugtracker": {
"web": "https://github.com/tembo-io/pg_later/issues/"
},
"repository": {
"url": "git://github.com/tembo-io/pg_later.git",
"web": "https://github.com/tembo-io/pg_later/",
"type": "git"
}
},
"generated_by": "David E. Wheeler",
"meta-spec": {
"version": "1.0.0",
"url": "https://pgxn.org/meta/spec.txt"
},
"tags": [
"pgmq",
"later",
"async"
]
}