-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathMETA.json.in
More file actions
51 lines (51 loc) · 1.72 KB
/
Copy pathMETA.json.in
File metadata and controls
51 lines (51 loc) · 1.72 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
45
46
47
48
49
50
51
{
"name": "pg_durable",
"abstract": "SQL-native durable orchestrations for PostgreSQL",
"description": "pg_durable provides in-database durable execution for PostgreSQL. Durable functions are defined in SQL using composable operators, and their state is persisted to PostgreSQL so that workflows survive crashes, restarts, and failovers. The runtime executes inside a PostgreSQL background worker, with first-class primitives for scheduling, conditions, retries, HTTP activities, and parallel execution. No external orchestrator, queue, or scheduler is required.",
"version": "@CARGO_VERSION@",
"maintainer": [
"Microsoft Corporation <opensource@microsoft.com>"
],
"license": "postgresql",
"release_status": "stable",
"provides": {
"pg_durable": {
"abstract": "SQL-native durable orchestrations for PostgreSQL",
"file": "src/lib.rs",
"docfile": "USER_GUIDE.md",
"version": "@CARGO_VERSION@"
}
},
"prereqs": {
"runtime": {
"requires": {
"PostgreSQL": "17.0.0"
}
}
},
"resources": {
"homepage": "https://microsoft.github.io/pg_durable/",
"bugtracker": {
"web": "https://github.com/microsoft/pg_durable/issues/"
},
"repository": {
"url": "https://github.com/microsoft/pg_durable.git",
"web": "https://github.com/microsoft/pg_durable/",
"type": "git"
}
},
"generated_by": "Microsoft Corporation",
"meta-spec": {
"version": "1.0.0",
"url": "https://pgxn.org/meta/spec.txt"
},
"tags": [
"durable execution",
"durable functions",
"workflow",
"orchestration",
"background worker",
"pgrx",
"rust"
]
}