Skip to content

Commit

Permalink
Update artifact location info
Browse files Browse the repository at this point in the history
  • Loading branch information
alllex committed Jun 30, 2021
1 parent a4fdf0c commit eccfe59
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Parsus

[![JitPack](https://jitpack.io/v/alllex/parsus.svg)](https://jitpack.io/#alllex/parsus)
[![Maven Central](https://img.shields.io/maven-central/v/me.alllex.parsus/parsus.svg?color=success)](https://search.maven.org/search?q=g:me.alllex.parsus)
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
[![Gradle build](https://github.com/alllex/parsus/actions/workflows/gradle.yml/badge.svg)](https://github.com/alllex/parsus/actions/workflows/gradle.yml)

A framework for writing composable parsers based on Kotlin Coroutines.
Expand Down Expand Up @@ -34,10 +35,20 @@ val ast = booleanGrammar.parseToEnd("a & (b1 -> c1) | a1 & !b | !(a1 -> a2) -> a

```kotlin
dependencies {
implementation("com.github.alllex:parsus:v0.1.2")
implementation("me.alllex.parsus:parsus:0.1.3")
}
```

### Using with Maven

```xml
<dependency>
<groupId>me.alllex.parsus</groupId>
<artifactId>parsus</artifactId>
<version>0.1.3</version>
</dependency>
```

## Features

* **0-dependencies**. Parsus only depends on Kotlin Standard Library.
Expand Down

0 comments on commit eccfe59

Please sign in to comment.