-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmori.dhall
More file actions
64 lines (63 loc) · 2.44 KB
/
Copy pathmori.dhall
File metadata and controls
64 lines (63 loc) · 2.44 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
52
53
54
55
56
57
58
59
60
61
62
63
64
let Schema =
https://raw.githubusercontent.com/shinzui/mori-schema/f53517e1a532275569bb14a452359f11c3e02c03/package.dhall
sha256:3b79aae9216456678300441ca8616b64a4b4fa520a1286dfcc418f60899d5d4a
in Schema.Project::{ project =
Schema.ProjectIdentity::{ name = "kiroku"
, namespace = "shinzui"
, type = Schema.PackageType.Library
, description = Some "PostgreSQL event store in Haskell"
, language = Schema.Language.Haskell
, lifecycle = Schema.Lifecycle.Experimental
, domains = [ "EventSourcing", "EventStore" ]
, owners = [ "shinzui" ]
}
, repos =
[ Schema.Repo::{ name = "kiroku"
, github = Some "shinzui/kiroku"
}
]
, packages =
[ Schema.Package::{ name = "kiroku-store"
, type = Schema.PackageType.Library
, language = Schema.Language.Haskell
, path = Some "kiroku-store"
, description = Some "Core event store library using hasql"
}
, Schema.Package::{ name = "shibuya-kiroku-adapter"
, type = Schema.PackageType.Library
, language = Schema.Language.Haskell
, path = Some "shibuya-kiroku-adapter"
, description = Some "Shibuya adapter for Kiroku event store subscriptions"
}
, Schema.Package::{ name = "kiroku-otel"
, type = Schema.PackageType.Library
, language = Schema.Language.Haskell
, path = Some "kiroku-otel"
, description = Some "OpenTelemetry W3C trace-context helpers for Kiroku event metadata"
}
, Schema.Package::{ name = "kiroku-metrics"
, type = Schema.PackageType.Library
, language = Schema.Language.Haskell
, path = Some "kiroku-metrics"
, description = Some "Metrics, health, and event-streaming HTTP endpoints for Kiroku"
}
, Schema.Package::{ name = "kiroku-store-migrations"
, type = Schema.PackageType.Library
, language = Schema.Language.Haskell
, path = Some "kiroku-store-migrations"
, description = Some "Native pg-migrate component and checked-in Codd history mapping for Kiroku"
}
]
, dependencies =
[ "effectful/effectful"
, "hasql/hasql"
, "hasql:hasql-notifications"
, "hasql:hasql-pool"
, "hasql:hasql-transaction"
, "iand675/hs-opentelemetry"
, "MMZK1526/mmzk-typeid"
, "shinzui/ephemeral-pg"
, "shinzui/pg-migrate"
, "shinzui/shibuya"
]
}