diff options
author | Giacomo Cavalieri <giacomo.cavalieri@icloud.com> | 2024-01-04 19:13:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-04 18:13:14 +0000 |
commit | a38889c285bef95359e36c93da37221126f96556 (patch) | |
tree | 33f07bcccc5a2f46e2cda51cac7a86b22885337f /manifest.toml | |
parent | a07bba0954e440ccd3eb4d167e1eacb0065cc0af (diff) | |
download | lustre-a38889c285bef95359e36c93da37221126f96556.tar.gz lustre-a38889c285bef95359e36c93da37221126f96556.zip |
🔀 Add logging to `lustre/try` (#30)
* :heavy_plus_sign: Add `gleam_community_ansi` dependency
* :sparkles: Add log message when server is started
* :sparkles: Add retry policy and logging if port is taken
Diffstat (limited to 'manifest.toml')
-rw-r--r-- | manifest.toml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/manifest.toml b/manifest.toml index c23fa90..ef7a2b2 100644 --- a/manifest.toml +++ b/manifest.toml @@ -2,8 +2,11 @@ # You typically do not need to edit this file packages = [ + { 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" }, ] [requirements] +gleam_community_ansi = { version = "~> 1.3" } gleam_stdlib = { version = "~> 0.34" } |