An open API service for producing an overview of a list of open source projects.

https://github.com/burntsushi/toml

Score: 36.76771735528975

Last synced: about 8 hours ago
JSON representation

Repository metadata:

TOML parser for Golang with reflection.


Owner metadata:


Committers metadata

Last synced: 4 days ago

Total Commits: 439
Total Committers: 62
Avg Commits per committer: 7.081
Development Distribution Score (DDS): 0.617

Commits in past year: 15
Committers in past year: 6
Avg Commits per committer in past year: 2.5
Development Distribution Score (DDS) in past year: 0.467

Name Email Commits
Martin Tournoij m****n@a****t 168
Andrew Gallant j****m@g****m 121
Caleb Spare c****e@g****m 38
Quinn Slack q****k@q****m 20
kkHAIKE k****e@g****m 7
Rafal Jeczalik r****k@g****m 5
ttacon t****n@g****m 3
spf13 s****a@g****m 3
sahvx655-wq s****5@g****m 3
Martin Lindhe m****t@u****e 3
JC s****e@g****m 3
Bjørn Erik Pedersen b****n@g****m 2
Brandon Buck l****l@g****m 2
Brian Starkey s****y@g****m 2
Dato Simó d****o@n****s 2
Michael Vogt m****t@g****m 2
Nathan Youngman g****t@n****m 2
Seth W. Klein s****k@s****t 2
Shengjing Zhu z****j@d****g 2
Arran Walker a****r@f****g 2
Austin Ziegler a****n@z****a 2
Anthony Fok f****a@d****g 2
Sven Dowideit S****t@f****m 2
manunio m****r@g****m 2
Bryan Matsuo b****m 2
Yves Baldus Y****s@v****m 1
Curt Hash c****h@e****m 1
Lucas Baldoni l****i@b****m 1
Adam Ochonicki a****i@a****m 1
Oleksandr Redko o****b@g****m 1
and 32 more...

Package metadata

proxy.golang.org: github.com/BurntSushi/toml

Package toml implements decoding and encoding of TOML files.

  • Homepage: https://github.com/BurntSushi/toml
  • Documentation: https://pkg.go.dev/github.com/BurntSushi/toml#section-documentation
  • Licenses: MIT
  • Latest release: v1.6.0 (published 7 months ago)
  • Last Synced: 2026-07-22T11:51:35.136Z (4 days ago)
  • Versions: 16
  • Dependent Packages: 27,921
  • Dependent Repositories: 185,064
  • Docker Downloads: 26,529,519,479
  • Rankings:
    • Dependent repos count: 0.002%
    • Dependent packages count: 0.008%
    • Docker downloads count: 0.011%
    • Average: 0.457%
    • Stargazers count: 1.029%
    • Forks count: 1.233%
proxy.golang.org: github.com/burntsushi/toml

Package toml provides facilities for decoding and encoding TOML configuration files via reflection.

  • Homepage: https://github.com/burntsushi/toml
  • Documentation: https://pkg.go.dev/github.com/burntsushi/toml#section-documentation
  • Licenses: MIT
  • Latest release: v1.6.0 (published 7 months ago)
  • Last Synced: 2026-07-21T16:32:06.440Z (4 days ago)
  • Versions: 16
  • Dependent Packages: 20
  • Dependent Repositories: 20
  • Docker Downloads: 3,342,479,602
  • Rankings:
    • Docker downloads count: 0.456%
    • Average: 0.989%
    • Dependent packages count: 0.998%
    • Stargazers count: 1.029%
    • Dependent repos count: 1.229%
    • Forks count: 1.233%
proxy.golang.org: gopkg.in/burntsushi/toml.v0

Package toml provides facilities for decoding and encoding TOML configuration files via reflection.

  • Homepage: https://github.com/burntsushi/toml
  • Documentation: https://pkg.go.dev/gopkg.in/burntsushi/toml.v0#section-documentation
  • Licenses: MIT
  • Latest release: v0.3.1 (published almost 8 years ago)
  • Last Synced: 2026-06-26T16:47:32.545Z (29 days ago)
  • Versions: 4
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Stargazers count: 0.628%
    • Forks count: 0.774%
    • Average: 4.437%
    • Dependent packages count: 6.999%
    • Dependent repos count: 9.346%
proxy.golang.org: github.com/BuRntSushi/toml

Package toml provides facilities for decoding and encoding TOML configuration files via reflection.

  • Homepage: https://github.com/BuRntSushi/toml
  • Documentation: https://pkg.go.dev/github.com/BuRntSushi/toml#section-documentation
  • Licenses: MIT
  • Latest release: v1.6.0 (published 7 months ago)
  • Last Synced: 2026-07-16T17:21:01.127Z (9 days ago)
  • Versions: 16
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Stargazers count: 0.634%
    • Forks count: 0.776%
    • Average: 4.439%
    • Dependent packages count: 6.999%
    • Dependent repos count: 9.346%
proxy.golang.org: github.com/BurntSushi/Toml

Package toml provides facilities for decoding and encoding TOML configuration files via reflection. There is also support for delaying decoding with the Primitive type, and querying the set of keys in a TOML document with the MetaData type. The specification implemented: https://github.com/toml-lang/toml The sub-command github.com/BurntSushi/toml/cmd/tomlv can be used to verify whether a file is a valid TOML document. It can also be used to print the type of each key in a TOML document. There are two important types of tests used for this package. The first is contained inside '*_test.go' files and uses the standard Go unit testing framework. These tests are primarily devoted to holistically testing the decoder and encoder. The second type of testing is used to verify the implementation's adherence to the TOML specification. These tests have been factored into their own project: https://github.com/BurntSushi/toml-test The reason the tests are in a separate project is so that they can be used by any implementation of TOML. Namely, it is language agnostic. Example StrictDecoding shows how to detect whether there are keys in the TOML document that weren't decoded into the value given. This is useful for returning an error to the user if they've included extraneous fields in their configuration. Example UnmarshalTOML shows how to implement a struct type that knows how to unmarshal itself. The struct must take full responsibility for mapping the values passed into the struct. The method may be used with interfaces in a struct in cases where the actual type is not known until the data is examined. Example Unmarshaler shows how to decode TOML strings into your own custom data type.

  • Homepage: https://github.com/BurntSushi/Toml
  • Documentation: https://pkg.go.dev/github.com/BurntSushi/Toml#section-documentation
  • Licenses: MIT
  • Latest release: v1.6.0 (published 7 months ago)
  • Last Synced: 2026-06-01T14:06:02.619Z (about 2 months ago)
  • Versions: 16
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Stargazers count: 0.634%
    • Forks count: 0.776%
    • Average: 4.439%
    • Dependent packages count: 6.999%
    • Dependent repos count: 9.346%
proxy.golang.org: github.com/burntSushi/toml

Package toml provides facilities for decoding and encoding TOML configuration files via reflection. There is also support for delaying decoding with the Primitive type, and querying the set of keys in a TOML document with the MetaData type. The specification implemented: https://github.com/toml-lang/toml The sub-command github.com/BurntSushi/toml/cmd/tomlv can be used to verify whether a file is a valid TOML document. It can also be used to print the type of each key in a TOML document. There are two important types of tests used for this package. The first is contained inside '*_test.go' files and uses the standard Go unit testing framework. These tests are primarily devoted to holistically testing the decoder and encoder. The second type of testing is used to verify the implementation's adherence to the TOML specification. These tests have been factored into their own project: https://github.com/BurntSushi/toml-test The reason the tests are in a separate project is so that they can be used by any implementation of TOML. Namely, it is language agnostic. Example StrictDecoding shows how to detect whether there are keys in the TOML document that weren't decoded into the value given. This is useful for returning an error to the user if they've included extraneous fields in their configuration. Example UnmarshalTOML shows how to implement a struct type that knows how to unmarshal itself. The struct must take full responsibility for mapping the values passed into the struct. The method may be used with interfaces in a struct in cases where the actual type is not known until the data is examined. Example Unmarshaler shows how to decode TOML strings into your own custom data type.

  • Homepage: https://github.com/burntSushi/toml
  • Documentation: https://pkg.go.dev/github.com/burntSushi/toml#section-documentation
  • Licenses: MIT
  • Latest release: v1.6.0 (published 7 months ago)
  • Last Synced: 2026-06-30T01:05:39.444Z (26 days ago)
  • Versions: 16
  • Dependent Packages: 1
  • Dependent Repositories: 0
  • Rankings:
    • Stargazers count: 0.634%
    • Forks count: 0.776%
    • Average: 4.439%
    • Dependent packages count: 6.999%
    • Dependent repos count: 9.346%
proxy.golang.org: github.com/BURNTSUSHI/TOML

Package toml provides facilities for decoding and encoding TOML configuration files via reflection. There is also support for delaying decoding with the Primitive type, and querying the set of keys in a TOML document with the MetaData type. The specification implemented: https://github.com/toml-lang/toml The sub-command github.com/BurntSushi/toml/cmd/tomlv can be used to verify whether a file is a valid TOML document. It can also be used to print the type of each key in a TOML document. There are two important types of tests used for this package. The first is contained inside '*_test.go' files and uses the standard Go unit testing framework. These tests are primarily devoted to holistically testing the decoder and encoder. The second type of testing is used to verify the implementation's adherence to the TOML specification. These tests have been factored into their own project: https://github.com/BurntSushi/toml-test The reason the tests are in a separate project is so that they can be used by any implementation of TOML. Namely, it is language agnostic. Example StrictDecoding shows how to detect whether there are keys in the TOML document that weren't decoded into the value given. This is useful for returning an error to the user if they've included extraneous fields in their configuration. Example UnmarshalTOML shows how to implement a struct type that knows how to unmarshal itself. The struct must take full responsibility for mapping the values passed into the struct. The method may be used with interfaces in a struct in cases where the actual type is not known until the data is examined. Example Unmarshaler shows how to decode TOML strings into your own custom data type.

  • Homepage: https://github.com/BURNTSUSHI/TOML
  • Documentation: https://pkg.go.dev/github.com/BURNTSUSHI/TOML#section-documentation
  • Licenses: MIT
  • Latest release: v1.6.0 (published 7 months ago)
  • Last Synced: 2026-06-13T17:04:09.976Z (about 1 month ago)
  • Versions: 16
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Stargazers count: 0.634%
    • Forks count: 0.776%
    • Average: 4.439%
    • Dependent packages count: 6.999%
    • Dependent repos count: 9.346%
proxy.golang.org: github.com/bUrntsUshi/toml

Package toml provides facilities for decoding and encoding TOML configuration files via reflection.

  • Homepage: https://github.com/bUrntsUshi/toml
  • Documentation: https://pkg.go.dev/github.com/bUrntsUshi/toml#section-documentation
  • Licenses: MIT
  • Latest release: v1.6.0 (published 7 months ago)
  • Last Synced: 2026-07-13T23:06:35.713Z (12 days ago)
  • Versions: 16
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Stargazers count: 0.634%
    • Forks count: 0.776%
    • Average: 4.439%
    • Dependent packages count: 6.999%
    • Dependent repos count: 9.346%
proxy.golang.org: github.com/BuRNTsuShi/toml

Package toml provides facilities for decoding and encoding TOML configuration files via reflection.

  • Homepage: https://github.com/BuRNTsuShi/toml
  • Documentation: https://pkg.go.dev/github.com/BuRNTsuShi/toml#section-documentation
  • Licenses: MIT
  • Latest release: v1.6.0 (published 7 months ago)
  • Last Synced: 2026-07-17T21:28:09.968Z (8 days ago)
  • Versions: 16
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Stargazers count: 0.634%
    • Forks count: 0.776%
    • Average: 4.439%
    • Dependent packages count: 6.999%
    • Dependent repos count: 9.346%
proxy.golang.org: github.com/Burntsushi/toml

Package toml provides facilities for decoding and encoding TOML configuration files via reflection.

  • Homepage: https://github.com/Burntsushi/toml
  • Documentation: https://pkg.go.dev/github.com/Burntsushi/toml#section-documentation
  • Licenses: MIT
  • Latest release: v1.6.0 (published 7 months ago)
  • Last Synced: 2026-07-09T15:47:56.876Z (16 days ago)
  • Versions: 16
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Stargazers count: 0.635%
    • Forks count: 0.776%
    • Average: 4.439%
    • Dependent packages count: 6.999%
    • Dependent repos count: 9.346%
proxy.golang.org: github.com/BurnTSushi/toml

Package toml provides facilities for decoding and encoding TOML configuration files via reflection.

  • Homepage: https://github.com/BurnTSushi/toml
  • Documentation: https://pkg.go.dev/github.com/BurnTSushi/toml#section-documentation
  • Licenses: MIT
  • Latest release: v1.6.0 (published 7 months ago)
  • Last Synced: 2026-07-16T04:15:42.892Z (10 days ago)
  • Versions: 16
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Forks count: 0.774%
    • Stargazers count: 0.858%
    • Average: 4.494%
    • Dependent packages count: 6.999%
    • Dependent repos count: 9.346%
proxy.golang.org: github.com/BurntSushi/toML

  • Homepage: https://github.com/BurntSushi/toML
  • Documentation: https://pkg.go.dev/github.com/BurntSushi/toML#section-documentation
  • Licenses: WTFPL
  • Latest release: v0.2.0 (published over 10 years ago)
  • Last Synced: 2026-07-12T14:12:47.547Z (14 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent packages count: 4.593%
    • Average: 4.747%
    • Dependent repos count: 4.902%
proxy.golang.org: github.com/Burntsushi/Toml

  • Homepage:
  • Documentation: https://pkg.go.dev/github.com/Burntsushi/Toml#section-documentation
  • Licenses: mit
  • Latest release: v1.6.0 (published 7 months ago)
  • Last Synced: 2026-06-25T00:02:04.377Z (about 1 month ago)
  • Versions: 16
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent packages count: 4.641%
    • Average: 4.797%
    • Dependent repos count: 4.953%
proxy.golang.org: github.com/BurNtSushi/toml

  • Homepage:
  • Documentation: https://pkg.go.dev/github.com/BurNtSushi/toml#section-documentation
  • Licenses:
  • Latest release: v1.6.0 (published 7 months ago)
  • Last Synced: 2026-07-14T22:10:44.993Z (11 days ago)
  • Versions: 16
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent packages count: 4.688%
    • Average: 4.846%
    • Dependent repos count: 5.003%
proxy.golang.org: github.com/BurnTsushi/toml

  • Homepage:
  • Documentation: https://pkg.go.dev/github.com/BurnTsushi/toml#section-documentation
  • Licenses:
  • Latest release: v0.3.1 (published almost 8 years ago)
  • Last Synced: 2026-06-07T12:43:29.841Z (about 2 months ago)
  • Versions: 4
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent packages count: 4.693%
    • Average: 4.85%
    • Dependent repos count: 5.008%
proxy.golang.org: github.com/BURntsushi/toml

  • Homepage:
  • Documentation: https://pkg.go.dev/github.com/BURntsushi/toml#section-documentation
  • Licenses:
  • Latest release: v1.6.0 (published 7 months ago)
  • Last Synced: 2026-06-02T09:55:29.311Z (about 2 months ago)
  • Versions: 16
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent packages count: 4.709%
    • Average: 4.867%
    • Dependent repos count: 5.025%
proxy.golang.org: github.com/BUrntSUshi/toml

Package toml provides facilities for decoding and encoding TOML configuration files via reflection.

  • Homepage: https://github.com/BUrntSUshi/toml
  • Documentation: https://pkg.go.dev/github.com/BUrntSUshi/toml#section-documentation
  • Licenses: MIT
  • Latest release: v1.6.0 (published 7 months ago)
  • Last Synced: 2026-06-22T00:46:35.844Z (about 1 month ago)
  • Versions: 16
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent packages count: 4.734%
    • Average: 4.893%
    • Dependent repos count: 5.052%
proxy.golang.org: github.com/BurntSushi/tomL

Package toml provides facilities for decoding and encoding TOML configuration files via reflection. There is also support for delaying decoding with the Primitive type, and querying the set of keys in a TOML document with the MetaData type. The specification implemented: https://github.com/toml-lang/toml The sub-command github.com/BurntSushi/toml/cmd/tomlv can be used to verify whether a file is a valid TOML document. It can also be used to print the type of each key in a TOML document. There are two important types of tests used for this package. The first is contained inside '*_test.go' files and uses the standard Go unit testing framework. These tests are primarily devoted to holistically testing the decoder and encoder. The second type of testing is used to verify the implementation's adherence to the TOML specification. These tests have been factored into their own project: https://github.com/BurntSushi/toml-test The reason the tests are in a separate project is so that they can be used by any implementation of TOML. Namely, it is language agnostic. Example StrictDecoding shows how to detect whether there are keys in the TOML document that weren't decoded into the value given. This is useful for returning an error to the user if they've included extraneous fields in their configuration. Example UnmarshalTOML shows how to implement a struct type that knows how to unmarshal itself. The struct must take full responsibility for mapping the values passed into the struct. The method may be used with interfaces in a struct in cases where the actual type is not known until the data is examined. Example Unmarshaler shows how to decode TOML strings into your own custom data type.

  • Homepage: https://github.com/BurntSushi/tomL
  • Documentation: https://pkg.go.dev/github.com/BurntSushi/tomL#section-documentation
  • Licenses: MIT
  • Latest release: v1.6.0 (published 7 months ago)
  • Last Synced: 2026-07-20T22:02:20.411Z (5 days ago)
  • Versions: 16
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Stargazers count: 1.021%
    • Forks count: 1.214%
    • Average: 4.901%
    • Dependent packages count: 8.074%
    • Dependent repos count: 9.294%
proxy.golang.org: github.com/BurntSuShI/toml

Package toml provides facilities for decoding and encoding TOML configuration files via reflection. There is also support for delaying decoding with the Primitive type, and querying the set of keys in a TOML document with the MetaData type. The specification implemented: https://github.com/toml-lang/toml The sub-command github.com/BurntSushi/toml/cmd/tomlv can be used to verify whether a file is a valid TOML document. It can also be used to print the type of each key in a TOML document. There are two important types of tests used for this package. The first is contained inside '*_test.go' files and uses the standard Go unit testing framework. These tests are primarily devoted to holistically testing the decoder and encoder. The second type of testing is used to verify the implementation's adherence to the TOML specification. These tests have been factored into their own project: https://github.com/BurntSushi/toml-test The reason the tests are in a separate project is so that they can be used by any implementation of TOML. Namely, it is language agnostic. Example StrictDecoding shows how to detect whether there are keys in the TOML document that weren't decoded into the value given. This is useful for returning an error to the user if they've included extraneous fields in their configuration. Example UnmarshalTOML shows how to implement a struct type that knows how to unmarshal itself. The struct must take full responsibility for mapping the values passed into the struct. The method may be used with interfaces in a struct in cases where the actual type is not known until the data is examined. Example Unmarshaler shows how to decode TOML strings into your own custom data type.

  • Homepage: https://github.com/BurntSuShI/toml
  • Documentation: https://pkg.go.dev/github.com/BurntSuShI/toml#section-documentation
  • Licenses: MIT
  • Latest release: v1.6.0 (published 7 months ago)
  • Last Synced: 2026-07-05T22:01:38.974Z (20 days ago)
  • Versions: 16
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Stargazers count: 1.021%
    • Forks count: 1.215%
    • Average: 4.901%
    • Dependent packages count: 8.083%
    • Dependent repos count: 9.283%
proxy.golang.org: github.com/BurntSushI/toml

Package toml provides facilities for decoding and encoding TOML configuration files via reflection. There is also support for delaying decoding with the Primitive type, and querying the set of keys in a TOML document with the MetaData type. The specification implemented: https://github.com/toml-lang/toml The sub-command github.com/BurntSushi/toml/cmd/tomlv can be used to verify whether a file is a valid TOML document. It can also be used to print the type of each key in a TOML document. There are two important types of tests used for this package. The first is contained inside '*_test.go' files and uses the standard Go unit testing framework. These tests are primarily devoted to holistically testing the decoder and encoder. The second type of testing is used to verify the implementation's adherence to the TOML specification. These tests have been factored into their own project: https://github.com/BurntSushi/toml-test The reason the tests are in a separate project is so that they can be used by any implementation of TOML. Namely, it is language agnostic. Example StrictDecoding shows how to detect whether there are keys in the TOML document that weren't decoded into the value given. This is useful for returning an error to the user if they've included extraneous fields in their configuration. Example UnmarshalTOML shows how to implement a struct type that knows how to unmarshal itself. The struct must take full responsibility for mapping the values passed into the struct. The method may be used with interfaces in a struct in cases where the actual type is not known until the data is examined. Example Unmarshaler shows how to decode TOML strings into your own custom data type.

  • Homepage: https://github.com/BurntSushI/toml
  • Documentation: https://pkg.go.dev/github.com/BurntSushI/toml#section-documentation
  • Licenses: MIT
  • Latest release: v1.6.0 (published 7 months ago)
  • Last Synced: 2026-05-31T07:15:38.449Z (about 2 months ago)
  • Versions: 16
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Stargazers count: 1.021%
    • Forks count: 1.215%
    • Average: 4.901%
    • Dependent packages count: 8.083%
    • Dependent repos count: 9.283%
proxy.golang.org: github.com/BURNTSushi/toml

Package toml provides facilities for decoding and encoding TOML configuration files via reflection.

  • Homepage: https://github.com/BURNTSushi/toml
  • Documentation: https://pkg.go.dev/github.com/BURNTSushi/toml#section-documentation
  • Licenses: MIT
  • Latest release: v1.6.0 (published 7 months ago)
  • Last Synced: 2026-07-22T10:32:14.954Z (4 days ago)
  • Versions: 16
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent packages count: 4.867%
    • Average: 5.03%
    • Dependent repos count: 5.194%
proxy.golang.org: github.com/BURNTSUSHI/toml

Package toml provides facilities for decoding and encoding TOML configuration files via reflection.

  • Homepage: https://github.com/BURNTSUSHI/toml
  • Documentation: https://pkg.go.dev/github.com/BURNTSUSHI/toml#section-documentation
  • Licenses: MIT
  • Latest release: v1.6.0 (published 7 months ago)
  • Last Synced: 2026-07-05T02:17:20.772Z (21 days ago)
  • Versions: 16
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent packages count: 4.894%
    • Average: 5.059%
    • Dependent repos count: 5.223%
proxy.golang.org: github.com/burntsushi/Toml

Package toml provides facilities for decoding and encoding TOML configuration files via reflection.

  • Homepage: https://github.com/burntsushi/Toml
  • Documentation: https://pkg.go.dev/github.com/burntsushi/Toml#section-documentation
  • Licenses: MIT
  • Latest release: v1.6.0 (published 7 months ago)
  • Last Synced: 2026-06-25T13:45:48.678Z (about 1 month ago)
  • Versions: 16
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent packages count: 5.164%
    • Average: 5.337%
    • Dependent repos count: 5.51%
proxy.golang.org: github.com/BurnTSusHi/toml

Package toml provides facilities for decoding and encoding TOML configuration files via reflection.

  • Homepage: https://github.com/BurnTSusHi/toml
  • Documentation: https://pkg.go.dev/github.com/BurnTSusHi/toml#section-documentation
  • Licenses: MIT
  • Latest release: v1.6.0 (published 7 months ago)
  • Last Synced: 2026-07-18T21:30:32.559Z (7 days ago)
  • Versions: 16
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Stargazers count: 1.019%
    • Forks count: 1.226%
    • Average: 5.428%
    • Dependent packages count: 8.899%
    • Dependent repos count: 10.567%
proxy.golang.org: github.com/BurNTSusHI/toml

Package toml provides facilities for decoding and encoding TOML configuration files via reflection.

  • Homepage: https://github.com/BurNTSusHI/toml
  • Documentation: https://pkg.go.dev/github.com/BurNTSusHI/toml#section-documentation
  • Licenses: MIT
  • Latest release: v1.6.0 (published 7 months ago)
  • Last Synced: 2026-07-20T03:01:34.673Z (6 days ago)
  • Versions: 16
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Stargazers count: 1.015%
    • Forks count: 1.236%
    • Average: 5.485%
    • Dependent packages count: 8.978%
    • Dependent repos count: 10.713%
proxy.golang.org: github.com/BurntSushi/TOML

Package toml provides facilities for decoding and encoding TOML configuration files via reflection.

  • Homepage: https://github.com/BurntSushi/TOML
  • Documentation: https://pkg.go.dev/github.com/BurntSushi/TOML#section-documentation
  • Licenses: MIT
  • Latest release: v1.6.0 (published 7 months ago)
  • Last Synced: 2026-07-05T23:46:44.681Z (20 days ago)
  • Versions: 16
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent packages count: 5.426%
    • Average: 5.609%
    • Dependent repos count: 5.791%
proxy.golang.org: github.com/BurntsUSHI/toml

Package toml provides facilities for decoding and encoding TOML configuration files via reflection.

  • Homepage: https://github.com/BurntsUSHI/toml
  • Documentation: https://pkg.go.dev/github.com/BurntsUSHI/toml#section-documentation
  • Licenses: MIT
  • Latest release: v1.6.0 (published 7 months ago)
  • Last Synced: 2026-07-05T11:21:36.452Z (21 days ago)
  • Versions: 16
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent packages count: 5.822%
    • Average: 6.017%
    • Dependent repos count: 6.212%
proxy.golang.org: github.com/BurntSuShi/toml

Package toml provides facilities for decoding and encoding TOML configuration files via reflection.

  • Homepage: https://github.com/BurntSuShi/toml
  • Documentation: https://pkg.go.dev/github.com/BurntSuShi/toml#section-documentation
  • Licenses: MIT
  • Latest release: v1.6.0 (published 7 months ago)
  • Last Synced: 2026-07-15T18:15:16.047Z (10 days ago)
  • Versions: 16
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent packages count: 6.999%
    • Average: 8.173%
    • Dependent repos count: 9.346%
proxy.golang.org: github.com/BUrntSushi/toml

Package toml provides facilities for decoding and encoding TOML configuration files via reflection.

  • Homepage: https://github.com/BUrntSushi/toml
  • Documentation: https://pkg.go.dev/github.com/BUrntSushi/toml#section-documentation
  • Licenses: MIT
  • Latest release: v1.6.0 (published 7 months ago)
  • Last Synced: 2026-07-15T19:33:41.184Z (10 days ago)
  • Versions: 16
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent packages count: 6.999%
    • Average: 8.173%
    • Dependent repos count: 9.346%
proxy.golang.org: github.com/BurntSUshi/toml

Package toml provides facilities for decoding and encoding TOML configuration files via reflection.

  • Homepage: https://github.com/BurntSUshi/toml
  • Documentation: https://pkg.go.dev/github.com/BurntSUshi/toml#section-documentation
  • Licenses: MIT
  • Latest release: v1.6.0 (published 7 months ago)
  • Last Synced: 2026-05-28T09:19:46.419Z (about 2 months ago)
  • Versions: 16
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent packages count: 8.61%
    • Average: 9.159%
    • Dependent repos count: 9.709%
ubuntu-22.04: golang-toml

  • Homepage: https://github.com/BurntSushi/toml
  • Licenses:
  • Latest release: 1.0.0-2 (published 6 months ago)
  • Last Synced: 2026-03-07T04:42:50.902Z (5 months ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
ubuntu-23.10: golang-toml

  • Homepage: https://github.com/BurntSushi/toml
  • Licenses:
  • Latest release: 1.2.1-1 (published 6 months ago)
  • Last Synced: 2026-03-10T06:03:59.632Z (5 months ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
debian-11: golang-toml

  • Homepage: https://github.com/BurntSushi/toml
  • Documentation: https://packages.debian.org/bullseye/golang-toml
  • Licenses:
  • Latest release: 0.3.1-1 (published 6 months ago)
  • Last Synced: 2026-03-13T16:30:56.376Z (4 months ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
debian-10: golang-toml

  • Homepage: https://github.com/BurntSushi/toml
  • Documentation: https://packages.debian.org/buster/golang-toml
  • Licenses:
  • Latest release: 0.3.0+git20170626.7.a368813-1 (published 5 months ago)
  • Last Synced: 2026-03-13T07:09:43.810Z (4 months ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
ubuntu-24.04: golang-toml

  • Homepage: https://github.com/BurntSushi/toml
  • Licenses:
  • Latest release: 1.3.2-2 (published 6 months ago)
  • Last Synced: 2026-03-06T11:05:09.029Z (5 months ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
debian-12: golang-toml

  • Homepage: https://github.com/BurntSushi/toml
  • Documentation: https://packages.debian.org/bookworm/golang-toml
  • Licenses: mit
  • Latest release: 1.2.0-2 (published 5 months ago)
  • Last Synced: 2026-03-13T01:14:12.525Z (5 months ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
ubuntu-24.10: golang-toml

  • Homepage: https://github.com/BurntSushi/toml
  • Licenses:
  • Latest release: 1.4.0-1 (published 5 months ago)
  • Last Synced: 2026-03-13T19:19:49.683Z (4 months ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
ubuntu-20.04: golang-toml

  • Homepage: https://github.com/BurntSushi/toml
  • Licenses:
  • Latest release: 0.3.1-1 (published 6 months ago)
  • Last Synced: 2026-03-08T04:57:45.622Z (5 months ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
debian-13: golang-toml

  • Homepage: https://github.com/BurntSushi/toml
  • Documentation: https://packages.debian.org/trixie/golang-toml
  • Licenses:
  • Latest release: 1.4.0-1 (published 5 months ago)
  • Last Synced: 2026-03-13T21:22:22.677Z (4 months ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
ubuntu-23.04: golang-toml

  • Homepage: https://github.com/BurntSushi/toml
  • Licenses:
  • Latest release: 1.2.0-2 (published 6 months ago)
  • Last Synced: 2026-03-11T08:09:44.695Z (5 months ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
guix: go-github-com-burntsushi-toml

Toml parser and encoder for Go

guix: go-tomlv

Toml parser and encoder for Go


Dependencies

.github/workflows/test.yml actions
  • actions/checkout v3 composite
  • actions/setup-go v3 composite
go.mod go
testdata/Cargo.toml cargo