woxi 0.1.0

Interpreter for a subset of the Wolfram Language
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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"