mirror of
https://github.com/apple/pkl.git
synced 2026-04-20 15:31:28 +02:00
Implement Pkl binary renderer and parser (#1203)
Implements a binary renderer for Pkl values, which is a lossless capturing of Pkl data. This follows the pkl binary format that is already used with `pkl server` calls, and is made available as a Java API and also an in-language API. Also, introduces a binary parser into the corresponding `PObject` types in Java.
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright © 2024 Apple Inc. and the Pkl project authors. All rights reserved.
|
||||
* Copyright © 2024-2025 Apple Inc. and the Pkl project authors. All rights reserved.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -82,6 +82,7 @@ dependencies {
|
||||
api(projects.pklCore)
|
||||
|
||||
implementation(libs.geantyref)
|
||||
implementation(libs.msgpack)
|
||||
|
||||
testImplementation(libs.javaxInject)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user