-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgleam.toml
More file actions
43 lines (39 loc) · 1.47 KB
/
Copy pathgleam.toml
File metadata and controls
43 lines (39 loc) · 1.47 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
name = "lightbulb"
version = "2.0.0-rc.1"
# Fill out these fields if you intend to generate HTML documentation or publish
# your project to the Hex package manager.
#
description = "A library for creating LTI 1.3 Tools in Gleam"
licences = ["MIT"]
repository = { type = "github", user = "Simon-Initiative", repo = "lightbulb" }
# links = [{ title = "Website", href = "" }]
#
# For a full reference of all the available options, you can have a look at
# https://gleam.run/writing-gleam/gleam-toml/.
# Modules that should be considered "internal" and will not be included in
# generated documentation. Note this currently only affects documentation;
# public types and functions defined in these modules are still public.
#
# Items in this list are "globs" that are matched against module names. See:
# https://docs.rs/glob/latest/glob/struct.Pattern.html
internal_modules = [
"lightbulb/utils/**",
"lightbulb/providers/http_mock_provider",
"lightbulb/providers/httpc_provider",
"lightbulb/providers/memory_provider/tables",
"lightbulb/jose",
]
[dependencies]
gleam_stdlib = ">= 0.60.0 and < 2.0.0"
gleam_http = ">= 4.0.0 and < 5.0.0"
gleam_httpc = ">= 5.0.0 and < 6.0.0"
gleam_json = ">= 3.0.1 and < 4.0.0"
jose = ">= 1.11.10 and < 2.0.0"
jsx = ">= 3.1.0 and < 4.0.0"
gleam_otp = ">= 1.2.0 and < 2.0.0"
gleam_erlang = ">= 1.3.0 and < 2.0.0"
gleam_time = ">= 1.7.0 and < 2.0.0"
youid = ">= 1.5.1 and < 2.0.0"
logging = ">= 1.3.0 and < 2.0.0"
[dev-dependencies]
gleeunit = ">= 1.0.0 and < 2.0.0"