Skip to content

Commit 15e7c17

Browse files
committed
add a TOML standard library to Julia
1 parent 03e1a89 commit 15e7c17

File tree

6 files changed

+10
-1
lines changed

6 files changed

+10
-1
lines changed

base/sysimg.jl

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ let
4646
:SuiteSparse,
4747
:Distributed,
4848
:SharedArrays,
49+
:TOML,
4950
:Pkg,
5051
:Test,
5152
:REPL,
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
5ddecd3ee4f295dd5b1fed5ce60d5c5d
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
d46a9fa59d275c48e9120c0a07a5f068bf9e9ef120bff6667f8b8905abd1bca0b725bc250c48c9bcba77f0f68cf6dfdb6fe4649175914b38c4c94402884f4f89

stdlib/.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@
33
/Pkg
44
/Statistics-*
55
/Statistics
6+
/TOML-*
7+
/TOML

stdlib/Makefile

+3-1
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,13 @@ STDLIBS = Base64 CRC32c Dates DelimitedFiles Distributed FileWatching \
1818
Future InteractiveUtils Libdl LibGit2 LinearAlgebra Logging \
1919
Markdown Mmap Printf Profile Random REPL Serialization SHA \
2020
SharedArrays Sockets SparseArrays SuiteSparse Test Unicode UUIDs
21-
STDLIBS_EXT = Pkg Statistics
21+
STDLIBS_EXT = Pkg Statistics TOML
2222
PKG_GIT_URL := git://github.com/JuliaLang/Pkg.jl.git
2323
PKG_TAR_URL = https://api.github.com/repos/JuliaLang/Pkg.jl/tarball/$1
2424
STATISTICS_GIT_URL := git://github.com/JuliaLang/Statistics.jl.git
2525
STATISTICS_TAR_URL = https://api.github.com/repos/JuliaLang/Statistics.jl/tarball/$1
26+
TOML_GIT_URL := git://github.com/KristofferC/TOML.jl.git
27+
TOML_TAR_URL = https://api.github.com/repos/KristofferC/TOML.jl/tarball/$1
2628

2729
$(foreach module, $(STDLIBS_EXT), $(eval $(call stdlib-external,$(module),$(shell echo $(module) | tr a-z A-Z))))
2830

stdlib/TOML.version

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
TOML_BRANCH = master
2+
TOML_SHA1 = 2fd4e3eaa8bbb6b19dbd18822e75946a31bbf86c

0 commit comments

Comments
 (0)