From e63428c2f83fe25d5f85ba9026f021683d941a5d Mon Sep 17 00:00:00 2001 From: Julian Schurhammer Date: Fri, 26 May 2023 18:21:00 +1200 Subject: [PATCH] update gleam toml and readme --- README.md | 5 ++++- gleam.toml | 9 ++++----- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 2d11a1c..4d7b812 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![Package Version](https://img.shields.io/hexpm/v/gleamy_structures)](https://hex.pm/packages/gleamy_structures) [![Hex Docs](https://img.shields.io/badge/hex-docs-ffaff3)](https://hexdocs.pm/gleamy_structures/) -A Gleam project +Data structures in pure Gleam. ## Quick start @@ -22,3 +22,6 @@ gleam add gleamy_structures ``` and its documentation can be found at . + +## Contributions Welcome +Feel free to make PRs, issues, or requests for new data structures and functions :) Especially welcome would be more rigorous tests and reviews of the implementation compared to source materials. diff --git a/gleam.toml b/gleam.toml index 542e83b..4dc5ca1 100644 --- a/gleam.toml +++ b/gleam.toml @@ -3,11 +3,10 @@ version = "0.1.0" # Fill out these fields if you intend to generate HTML documentation or publish # your project to the Hex package manager. -# -# licences = ["Apache-2.0"] -# description = "A Gleam library..." -# repository = { type = "github", user = "username", repo = "project" } -# links = [{ title = "Website", href = "https://gleam.run" }] +licences = ["Apache-2.0"] +description = "Data structures in pure Gleam." +repository = { type = "github", user = "schurhammer", repo = "gleamy_structures" } +links = [{ title = "Website", href = "https://github.com/schurhammer/gleamy_structures" }] [dependencies] gleam_stdlib = "~> 0.29.0"