aboutsummaryrefslogtreecommitdiff
path: root/manifest.toml
diff options
context:
space:
mode:
authorHayleigh Thompson <me@hayleigh.dev>2024-01-05 08:25:08 +0000
committerGitHub <noreply@github.com>2024-01-05 08:25:08 +0000
commit775bc596ac84f5b28b4e0e1654525a360002711f (patch)
treed589203f67f2934fa4616d3c76d1e4cb523cdb16 /manifest.toml
parentc6b89cae8fcef56b6420698f311a8955919037c6 (diff)
downloadlustre-775bc596ac84f5b28b4e0e1654525a360002711f.tar.gz
lustre-775bc596ac84f5b28b4e0e1654525a360002711f.zip
🔀 Add flags for configuring the server's host and port. (#33)
* :sparkles: Add the option to include lustre_ui styles from a CDN. * :heavy_plus_sign: Add glint and argv as dependencies. * :sparkles: Use glint for cli args parsing. This adds support for user-configurable host and port, as well as the ability to opt-in to including lustre_ui's stylesheet with the --include-styles flag.
Diffstat (limited to 'manifest.toml')
-rw-r--r--manifest.toml5
1 files changed, 5 insertions, 0 deletions
diff --git a/manifest.toml b/manifest.toml
index ef7a2b2..0c1900d 100644
--- a/manifest.toml
+++ b/manifest.toml
@@ -2,11 +2,16 @@
# You typically do not need to edit this file
packages = [
+ { name = "argv", version = "1.0.1", build_tools = ["gleam"], requirements = [], otp_app = "argv", source = "hex", outer_checksum = "A6E9009E50BBE863EB37D963E4315398D41A3D87D0075480FC244125808F964A" },
{ name = "gleam_community_ansi", version = "1.3.0", build_tools = ["gleam"], requirements = ["gleam_community_colour", "gleam_stdlib"], otp_app = "gleam_community_ansi", source = "hex", outer_checksum = "AB7C3CCC894653637E02DC455D5890C8CF3064E83E78CFE61145A4C458D02DE6" },
{ name = "gleam_community_colour", version = "1.3.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_community_colour", source = "hex", outer_checksum = "A49A5E3AE8B637A5ACBA80ECB9B1AFE89FD3D5351FF6410A42B84F666D40D7D5" },
{ name = "gleam_stdlib", version = "0.34.0", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "1FB8454D2991E9B4C0C804544D8A9AD0F6184725E20D63C3155F0AEB4230B016" },
+ { name = "glint", version = "0.14.0", build_tools = ["gleam"], requirements = ["gleam_community_ansi", "gleam_stdlib", "gleam_community_colour", "snag"], otp_app = "glint", source = "hex", outer_checksum = "21AB16D5A50D4EF34DF935915FDBEE06B2DAEDEE3FCC8584C6E635A866566B38" },
+ { name = "snag", version = "0.3.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "snag", source = "hex", outer_checksum = "54D32E16E33655346AA3E66CBA7E191DE0A8793D2C05284E3EFB90AD2CE92BCC" },
]
[requirements]
+argv = { version = "~> 1.0" }
gleam_community_ansi = { version = "~> 1.3" }
gleam_stdlib = { version = "~> 0.34" }
+glint = { version = "~> 0.14" }