diff --git a/README.md b/README.md index 9a2a74f..5faf61a 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ # handles -`handles` is a templating language in pure Gleam. Heavily inspired by [mustache](https://mustache.github.io/) and [Handlebars.js](https://github.com/handlebars-lang/handlebars.js). +`handles` is a templating language written in pure Gleam. Heavily inspired by [mustache](https://mustache.github.io/) and [Handlebars.js](https://github.com/handlebars-lang/handlebars.js). ```sh gleam add handles diff --git a/gleam.toml b/gleam.toml index 34cb683..61d579f 100644 --- a/gleam.toml +++ b/gleam.toml @@ -1,16 +1,10 @@ name = "handles" version = "1.0.0" -# Fill out these fields if you intend to generate HTML documentation or publish -# your project to the Hex package manager. -# -# description = "" -# licences = ["Apache-2.0"] -# repository = { type = "github", user = "username", repo = "project" } -# links = [{ title = "Website", href = "https://gleam.run" }] -# -# For a full reference of all the available options, you can have a look at -# https://gleam.run/writing-gleam/gleam-toml/. +description = "Handles is a templating language written in pure Gleam. Heavily inspired by Mustache and Handlebars.js" +licences = ["MIT"] +repository = { type = "github", user = "olian04", repo = "gleam_handles" } + [dependencies] gleam_stdlib = ">= 0.34.0 and < 2.0.0" diff --git a/manifest.toml b/manifest.toml index 2a7bc47..c1c3e7c 100644 --- a/manifest.toml +++ b/manifest.toml @@ -2,8 +2,15 @@ # You typically do not need to edit this file packages = [ - { name = "gleam_stdlib", version = "0.38.0", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "663CF11861179AF415A625307447775C09404E752FF99A24E2057C835319F1BE" }, - { name = "gleeunit", version = "1.1.2", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleeunit", source = "hex", outer_checksum = "72CDC3D3F719478F26C4E2C5FED3E657AC81EC14A47D2D2DEBB8693CA3220C3B" }, + { name = "gleam_stdlib", version = "0.38.0", build_tools = [ + "gleam", + ], requirements = [ + ], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "663CF11861179AF415A625307447775C09404E752FF99A24E2057C835319F1BE" }, + { name = "gleeunit", version = "1.1.2", build_tools = [ + "gleam", + ], requirements = [ + "gleam_stdlib", + ], otp_app = "gleeunit", source = "hex", outer_checksum = "72CDC3D3F719478F26C4E2C5FED3E657AC81EC14A47D2D2DEBB8693CA3220C3B" }, ] [requirements]