- the number of commits in snakeyaml-engine to be considered as candidates for porting to snakeyaml-engine-kmp
SnakeYAML Engine KMP is a YAML 1.2 processor for Kotlin Multiplatform, and supports
- Kotlin/JS,
- Kotlin/JVM,
- Kotlin/Native,
- Kotlin/Wasm.
SnakeYAML Engine KMP is based on SnakeYAML Engine.
Tip
Are you wondering if SnakeYAML Engine KMP is for you?
SnakeYAML Engine KMP offers fine-grained control and advanced functionality, which is a good fit if you need more customization and flexibility.
If you're for a hassle-free YAML (de)serialization experience, we recommend using kaml, which is designed for simplicity and ease of integration.
The library has been successfully ported to KMP, and is consumed by kaml, a library that integrates with kotlinx.serialization.
SnakeYAML Engine KMP uses comprehensive YAML test suites that validate correctness. Detailed performance testing wasn't conducted, however we have performance reports (see here) and mechanisms in place that should prevent performance regressions.
SnakeYAML Engine KMP is published to Maven Central.
// build.gradle.kts
repositories {
mavenCentral()
}
dependencies {
implementation("it.krzeminski:snakeyaml-engine-kmp:x.y.z")
}
To learn about the API, view the reference documentation.
We also recommend reading SnakeYAML Engine's documentation.
Snapshot versions of SnakeYAML Engine KMP (straight from the main branch) are available. They are published to Sonatype snapshots repository, which must be added as a custom Maven repo:
// build.gradle.kts
repositories {
maven {
url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots/")
}
}
dependencies {
implementation("it.krzeminski:snakeyaml-engine-kmp:x.y.z-SNAPSHOT")
}