summaryrefslogtreecommitdiff
path: root/library/src/lib.rs
diff options
context:
space:
mode:
authorHarmoGlace <23212967+HarmoGlace@users.noreply.github.com>2023-04-26 11:31:32 +0200
committerGitHub <noreply@github.com>2023-04-26 11:31:32 +0200
commit6134e3f4ee5298153c36d344df97f36279931c33 (patch)
treec4787313543521f079a23e3b6aeb7a4d2a5d0945 /library/src/lib.rs
parent7cb63d1aae349541aabc165d8c9e5c0943e38511 (diff)
Add toml support (#807)
Diffstat (limited to 'library/src/lib.rs')
-rw-r--r--library/src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/library/src/lib.rs b/library/src/lib.rs
index e7a23cd7..0350746d 100644
--- a/library/src/lib.rs
+++ b/library/src/lib.rs
@@ -131,6 +131,7 @@ fn global(math: Module, calc: Module) -> Module {
global.define("read", compute::read);
global.define("csv", compute::csv);
global.define("json", compute::json);
+ global.define("toml", compute::toml);
global.define("yaml", compute::yaml);
global.define("xml", compute::xml);