# 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 = "r2rust-core" version = "0.1.0" authors = ["Pool Camacho "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "An interpreter inspired by R, implemented in Rust with a modular design." homepage = "https://github.com/R2Rust" readme = "README.md" keywords = [ "interpreter", "repl", "rust", "r-programming", ] categories = [ "command-line-utilities", "development-tools", ] license = "GPL-3.0" repository = "https://github.com/R2Rust/core" [lib] name = "r2rust_core" path = "src/lib.rs" [[bin]] name = "r2rust" path = "src/main.rs" [[test]] name = "ast_tests" path = "tests/ast_tests.rs" [[test]] name = "environment_tests" path = "tests/environment_tests.rs" [[test]] name = "evaluator_tests" path = "tests/evaluator_tests.rs" [[test]] name = "lexer_tests" path = "tests/lexer_tests.rs" [[test]] name = "parser_tests" path = "tests/parser_tests.rs" [[test]] name = "repl_tests" path = "tests/repl_tests.rs" [dependencies.clap] version = "4.5.21" features = ["derive"] optional = true [dependencies.lazy_static] version = "1.5.0" [dependencies.logos] version = "0.14.2" [dependencies.ndarray] version = "0.16.1" [dependencies.rayon] version = "1.10.0" [dependencies.serde] version = "1.0.215" features = ["derive"] optional = true [dependencies.thiserror] version = "2.0.3" [dev-dependencies.criterion] version = "0.5.1" [dev-dependencies.rstest] version = "0.23.0" [features] cli = ["clap"] default = ["with-serde"] with-serde = ["serde"]