toml4j icon indicating copy to clipboard operation
toml4j copied to clipboard

A Java TOML parser

Results 53 toml4j issues
Sort by recently updated
recently updated
newest added

I made the code into a Java 9 module. This required to: - create a module-info.java defining a module "toml4j" - move the compiler version to Java 9 - move...

Is there any interest in modifying the code so that it becomes a Java module? Currently, its only dependency is gson, which is already a Java module. Therefore, the transformation...

It would be nice to clarify the current status of this project. Will there be any future development or support? Will this ever support newer versions of TOML (TOML 0.4.0...

The project used a regular expression to parse unicode escapes, but this falls short when you have a windows path in a value: ``` toml key = "c:\\\\Users" ```` I...

You should swap each instance of Hashmap with LinkedHashMap to guarantee a predictable iteration order. Its a simple fix done in 5 mins

Hi Team, gson version prior to 2.8.9 is vulnerable to CVE-2022-25647. Therefore, could you please upgrade the library [1] to 2.8.9 and do a release? [1] https://github.com/mwanji/toml4j/blob/master/pom.xml#L59 Thanks! Hiranya

- Bump java version 1.6 to 1.8 - Remove old version of date parsing (java.util.Date) - Add to parser #inf java.lang.Double.POSITIVE_INFINITY - Add to parser #+inf java.lang.Double.POSITIVE_INFINITY - Add to...

Bumps [gson](https://github.com/google/gson) from 2.8.1 to 2.8.9. Release notes Sourced from gson's releases. Gson 2.8.9 Make OSGi bundle's dependency on sun.misc optional (#1993). Deprecate Gson.excluder() exposing internal Excluder class (#1986). Prevent...

dependencies

I have beef with the policy on quoted key loading. It doesn't make sense to require that the query have the same quotes. The point of quoted keys are that...