Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add act, dedent, pprint #96

Merged
merged 1 commit into from
Apr 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ Looking for something to build? Check out [the suggestions list][suggestions].

### Data Structures

- [act](https://github.com/MystPi/act) - [📚](https://hexdocs.pm/act/) - Compose stateful actions to simulate mutable state
- [argamak](https://github.com/tynanbe/argamak) - [📚](https://hexdocs.pm/argamak/) - A tensor library for the Gleam programming language
- [gleam_stdlib](https://github.com/gleam-lang/stdlib) - [📚](https://hexdocs.pm/gleam_stdlib/) - A standard library for the Gleam programming language
- [glearray](https://github.com/fschwalbe/glearray) - [📚](https://hexdocs.pm/glearray/) - Immutable arrays for Gleam
Expand Down Expand Up @@ -165,6 +166,7 @@ Looking for something to build? Check out [the suggestions list][suggestions].
- [glance_printer](https://github.com/bcpeinhardt/glance_printer) - [📚](https://hexdocs.pm/glance_printer/) - A pretty_printer for the glance AST
- [gleam_package_interface](https://github.com/gleam-lang/package-interface-decoder) - [📚](https://hexdocs.pm/gleam_package_interface/) - Work with Gleam's package interfaces
- [glexer](https://github.com/DanielleMaywood/glexer) - [📚](https://hexdocs.pm/glexer/) - A lexer for Gleam source code
- [pprint](https://github.com/MystPi/pprint) - [📚](https://hexdocs.pm/pprint/) - Pretty print values with style!

### Graphics

Expand Down Expand Up @@ -249,6 +251,7 @@ Looking for something to build? Check out [the suggestions list][suggestions].

### Text

- [dedent](https://github.com/MystPi/dedent) - [📚](https://hexdocs.pm/dedent/) - Remove shared indentation from a string
- [edit_distance](https://github.com/giacomocavalieri/edit_distance) - [📚](https://hexdocs.pm/edit_distance/) - A pure Gleam package to compute the edit distance of two strings
- [gap](https://github.com/JohnBjrk/gap) - [📚](https://hexdocs.pm/gap/) - A Gleam library for comparing strings/lists and producing a textual (styled) representation of the differences.
- [glam](https://github.com/giacomocavalieri/glam) - [📚](https://hexdocs.pm/glam/) - A package to help you easily pretty print structured data
Expand Down
2 changes: 1 addition & 1 deletion packages/act.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ name = "act"
description = "Compose stateful actions to simulate mutable state"
docs_url = "https://hexdocs.pm/act/"
repo_url = "https://github.com/MystPi/act"
category = ""
category = "Data Structures"
2 changes: 1 addition & 1 deletion packages/dedent.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ name = "dedent"
description = "Remove shared indentation from a string"
docs_url = "https://hexdocs.pm/dedent/"
repo_url = "https://github.com/MystPi/dedent"
category = ""
category = "Text"
2 changes: 1 addition & 1 deletion packages/pprint.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ name = "pprint"
description = "Pretty print values with style!"
docs_url = "https://hexdocs.pm/pprint/"
repo_url = "https://github.com/MystPi/pprint"
category = ""
category = "Gleam"
5 changes: 5 additions & 0 deletions packages/stoiridh_version.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
name = "stoiridh_version"
description = "Semantic Versioning 2.0.0"
docs_url = "https://hexdocs.pm/stoiridh_version/"
repo_url = "https://gitlab.com/stoiridh-project/stoiridh-version"
category = ""
Loading