Skip to content

Latest commit

 

History

History
61 lines (44 loc) · 946 Bytes

File metadata and controls

61 lines (44 loc) · 946 Bytes

Building from Source

Prerequisites

  • JDK 17+
  • Maven 3.9+

Build

mvn clean package

Run Demo

mvn exec:java -Dexec.mainClass="io.github.andrestubbe.fastio.Demo"

Run Benchmark

mvn exec:java -Dexec.mainClass="io.github.andrestubbe.fastio.Benchmark"

Installation

JitPack (Recommended)

<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
</repositories>

<dependencies>
    <dependency>
        <groupId>com.github.andrestubbe</groupId>
        <artifactId>fastio</artifactId>
        <version>v1.0.0</version>
    </dependency>
</dependencies>

Gradle (JitPack)

repositories {
    maven { url 'https://jitpack.io' }
}

dependencies {
    implementation 'com.github.andrestubbe:fastio:v1.0.0'
}

Download Pre-built JAR

See Releases Page