-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathgleam.toml
29 lines (24 loc) · 806 Bytes
/
gleam.toml
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
name = "pog"
version = "3.2.0"
gleam = ">= 1.4.0"
licences = ["Apache-2.0"]
description = "A PostgreSQL database client for Gleam, based on PGO"
repository = { type = "github", user = "lpil", repo = "pog" }
links = [
{ title = "Website", href = "https://gleam.run" },
{ title = "Sponsor", href = "https://github.com/sponsors/lpil" },
]
[documentation]
pages = [
{ title = "Solving SSL issues", path = "docs/solving-ssl-issues.html", source = "docs/solving-ssl-issues.md" },
]
[dependencies]
gleam_stdlib = ">= 0.51.0 and < 2.0.0"
pgo = ">= 0.12.0 and < 2.0.0"
[dev-dependencies]
gleeunit = ">= 1.0.0 and < 2.0.0"
exception = ">= 2.0.0 and < 3.0.0"
gleam_erlang = ">= 0.30.0 and < 1.0.0"
[erlang]
# Starting an SSL connection relies on ssl application to be started.
extra_applications = ["ssl"]