[package]
edition = "2021"
name = "woxi"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Interpreter for a subset of the Wolfram Language"
readme = "README.md"
keywords = [
"wolfram",
"wolfram-language",
"mathematica",
"cas",
"math",
]
license = "AGPL-3.0-or-later"
repository = "https://github.com/ad-si/Woxi"
[lib]
name = "woxi"
path = "src/lib.rs"
[[bin]]
name = "woxi"
path = "src/main.rs"
[[test]]
name = "high_level_functions_tests"
path = "tests/high_level_functions_tests.rs"
[[test]]
name = "interpreter_tests"
path = "tests/interpreter_tests.rs"
[[test]]
name = "list_tests"
path = "tests/list_tests.rs"
[[test]]
name = "parser_tests"
path = "tests/parser_tests.rs"
[dependencies.chrono]
version = "0.4"
[dependencies.clap]
version = "4.3"
features = ["derive"]
[dependencies.pest]
version = "2.5"
[dependencies.pest_derive]
version = "2.5"
[dependencies.rand]
version = "0.8"
[dependencies.thiserror]
version = "1.0.63"