-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathgleam.toml
More file actions
31 lines (26 loc) · 1.06 KB
/
gleam.toml
File metadata and controls
31 lines (26 loc) · 1.06 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
name = "rsvp"
version = "1.2.0"
description = "Send HTTP requests from Lustre applications and server components."
repository = { type = "github", user = "hayleigh-dot-dev", repo = "rsvp" }
licences = ["MIT"]
links = [
{ title = "Sponsor", href = "https://github.com/sponsors/hayleigh-dot-dev" },
]
[documentation]
pages = [
{ title = " ", path = "#", source = "" },
{ title = "Fetching JSON", path = "recipes/get-json.html", source = "./recipes/get-json.md" },
{ title = "Post JSON", path = "recipes/post-json.html", source = "./recipes/post-json.md" },
{ title = "Include authorization headers", path = "recipes/authorization-headers.html", source = "./recipes/authorization-headers.md" },
]
[dependencies]
gleam_erlang = ">= 1.0.0 and < 2.0.0"
gleam_fetch = ">= 1.1.0 and < 2.0.0"
gleam_http = ">= 3.7.1 and < 5.0.0"
gleam_httpc = ">= 4.1.1 and < 6.0.0"
gleam_javascript = ">= 1.0.0 and < 2.0.0"
gleam_json = ">= 2.1.0 and < 4.0.0"
gleam_stdlib = ">= 0.60.0 and < 2.0.0"
lustre = ">= 5.1.0 and <= 6.0.0"
[dev-dependencies]
gleeunit = ">= 1.0.0 and < 2.0.0"