-
It would be great if a Hocon node could also yield its current path in the document.
It should merely be a additional field in the Hocon-enum, though I could be missing some complexity since I curr…
-
With Typesafe Config (authors of HOCON):
```scala
println(
ConfigFactory
.parseString("a = 1.0.1-zxc")
.getString("a")
)
```
Prints `1.0.1-zxc`.
With hocon.rs 0.9.0:
```rus…
-
Copy of issue https://github.com/akkadotnet/akka.net/issues/3054
---
In order to better resolve issues like:
https://github.com/akkadotnet/akka.net/issues/3031
https://github.com/akkadotnet/…
-
It appears that not all config values are not settable via environment variable. As for now kuiper utilizes config in the yaml format.
Maybe it would be better to use Hocon format for configuration. …
-
Great extension! Any plans for supporting HOCON in the future? Thanks.
-
**Issue by [iftenney](https://github.com/iftenney)**
_Tuesday Jan 29, 2019 at 22:43 GMT_
_Originally opened as https://github.com/nyu-mll/jiant/issues/475_
----
AllenNLP did this recently: https://…
-
src/main.rs
```rust
use hocon::HoconLoader;
fn main() -> Result {
let doc = HoconLoader::new()
.load_file(
"/path/to/my/hocon.conf",
)?
.hocon()?;
…
-
This issue is about how we can edit the style more rapidly.
# 国連ベクトルタイルツールキットの現状
国連ベクトルタイルツールキットでは、style.json を記述するにあたり、エディタでレイヤ単位に HOCON ファイルを書いて、それを parse-hocon を使って JSON に組み上げるということをしています。
…
-
Hi, I'm using hocon 0.4.0 and serde 1.0.124. The config file says `blah = 1 second`, the config struct says `blah: std::time::Duration`, and hocon says
```
Error: Error deserializing: "blah: inval…
ghost updated
3 years ago
-
Is there a way to obtain a JSON from a parsed Hocon?