gleam.toml

 1# SPDX-FileCopyrightText: Amolith <amolith@secluded.site>
 2#
 3# SPDX-License-Identifier: CC0-1.0
 4
 5name = "garble"
 6version = "1.0.0"
 7
 8# Fill out these fields if you intend to generate HTML documentation or publish
 9# your project to the Hex package manager.
10#
11# description = ""
12# licences = ["Apache-2.0"]
13# repository = { type = "github", user = "", repo = "" }
14# links = [{ title = "Website", href = "" }]
15#
16# For a full reference of all the available options, you can have a look at
17# https://gleam.run/writing-gleam/gleam-toml/.
18description = "Garble stdin to stdout with an LLM"
19licences = ["AGPL-3.0-or-later"]
20repository = { type = "custom", url = "https://git.secluded.site/garble" }
21
22[dependencies]
23gleam_stdlib = ">= 0.44.0 and < 2.0.0"
24stdin = ">= 2.0.2 and < 3.0.0"
25gleam_yielder = ">= 1.1.0 and < 2.0.0"
26argv = ">= 1.0.2 and < 2.0.0"
27glint = ">= 1.2.1 and < 2.0.0"
28gleam_httpc = ">= 5.0.0 and < 6.0.0"
29gleam_http = ">= 4.3.0 and < 5.0.0"
30gleam_json = ">= 3.1.0 and < 4.0.0"
31starlet = ">= 1.0.1 and < 2.0.0"
32envoy = ">= 1.1.0 and < 2.0.0"
33tom = ">= 2.0.0 and < 3.0.0"
34simplifile = ">= 2.3.2 and < 3.0.0"
35filepath = ">= 1.1.2 and < 2.0.0"
36shellout = ">= 1.7.0 and < 2.0.0"
37
38[dev-dependencies]
39gleeunit = ">= 1.0.0 and < 2.0.0"
40gleescript = ">= 1.5.2 and < 2.0.0"