summaryrefslogtreecommitdiff
path: root/library/src/lib.rs
diff options
context:
space:
mode:
authorP-Andersson <pierre.andersson01@gmail.com>2023-04-01 14:33:42 +0200
committerGitHub <noreply@github.com>2023-04-01 14:33:42 +0200
commit387bcc3879dbcfac17b215acd9a6b29fe400a016 (patch)
treef40fb672d8f67bf55a68626c4c4f6f9ab247516c /library/src/lib.rs
parent9e69a7b161191992f336c09ec711a1e1c9768633 (diff)
add support for loading data from yaml files (#447)
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 178db8a2..cabafd8c 100644
--- a/library/src/lib.rs
+++ b/library/src/lib.rs
@@ -124,6 +124,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("yaml", compute::yaml);
global.define("xml", compute::xml);
// Calc.