Compare commits
3 Commits
v0.1.2
..
992a964cd1
| Author | SHA1 | Date | |
|---|---|---|---|
| 992a964cd1 | |||
| da0e823342 | |||
| dbed732f1e |
@@ -27,14 +27,6 @@ emiting tokens and errors via callbacks.
|
|||||||
|
|
||||||
## Other Implementations
|
## Other Implementations
|
||||||
|
|
||||||
Other implementations exist, and they are mature and feature-rich, but they
|
|
||||||
are highly opinionated about what's a valid file. Built around maps they don't
|
|
||||||
allow repeating names and constraint what characters can be used.
|
|
||||||
|
|
||||||
These are great when you can adapt, or already agree, to their conditions but
|
|
||||||
that's not always the case when you are parsing configuration files from
|
|
||||||
other applications and that's what [asciigoat.org/ini][godoc] attempts to solve.
|
|
||||||
|
|
||||||
* [gcfg](https://pkg.go.dev/gopkg.in/gcfg.v1)
|
* [gcfg](https://pkg.go.dev/gopkg.in/gcfg.v1)
|
||||||
* [unknwon's go-ini](https://github.com/go-ini/ini)
|
* [unknwon's go-ini](https://github.com/go-ini/ini)
|
||||||
* [wlevene's GoINI](https://github.com/wlevene/ini)
|
* [wlevene's GoINI](https://github.com/wlevene/ini)
|
||||||
|
|||||||
@@ -2,6 +2,8 @@ module asciigoat.org/ini
|
|||||||
|
|
||||||
go 1.19
|
go 1.19
|
||||||
|
|
||||||
|
replace asciigoat.org/core => ../core
|
||||||
|
|
||||||
require (
|
require (
|
||||||
asciigoat.org/core v0.3.7
|
asciigoat.org/core v0.3.7
|
||||||
github.com/mgechev/revive v1.3.3
|
github.com/mgechev/revive v1.3.3
|
||||||
|
|||||||
@@ -1,5 +1,3 @@
|
|||||||
asciigoat.org/core v0.3.7 h1:tMasdvZgsMJJMVsZVfXXB5lqq82pFiCsyEmOEmcmAfI=
|
|
||||||
asciigoat.org/core v0.3.7/go.mod h1:tXj+JUutxRbcO40ZQRuUVaZ4rnYz1kAZ0nblisV8u74=
|
|
||||||
github.com/BurntSushi/toml v1.3.2 h1:o7IhLm0Msx3BaB+n3Ag7L8EVlByGnpq14C4YWiu/gL8=
|
github.com/BurntSushi/toml v1.3.2 h1:o7IhLm0Msx3BaB+n3Ag7L8EVlByGnpq14C4YWiu/gL8=
|
||||||
github.com/BurntSushi/toml v1.3.2/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ=
|
github.com/BurntSushi/toml v1.3.2/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ=
|
||||||
github.com/chavacava/garif v0.0.0-20230608123814-4bd63c2919ab h1:5JxePczlyGAtj6R1MUEFZ/UFud6FfsOejq7xLC2ZIb0=
|
github.com/chavacava/garif v0.0.0-20230608123814-4bd63c2919ab h1:5JxePczlyGAtj6R1MUEFZ/UFud6FfsOejq7xLC2ZIb0=
|
||||||
|
|||||||
Reference in New Issue
Block a user