[package] name = "r2rust-core" version = "0.1.0" edition = "2021" authors = ["Pool Camacho "] description = "An interpreter inspired by R, implemented in Rust with a modular design." homepage = "https://github.com/R2Rust" repository = "https://github.com/R2Rust/core" license = "GPL-3.0" readme = "README.md" keywords = ["interpreter", "repl", "rust", "r-programming"] categories = [ "command-line-utilities", "development-tools", ] [dependencies] clap = { version = "4.5.21", features = ["derive"], optional = true } lazy_static = "1.5.0" logos = "0.14.2" ndarray = "0.16.1" rayon = "1.10.0" serde = { version = "1.0.215", features = ["derive"], optional = true } thiserror = "2.0.3" [dev-dependencies] criterion = "0.5.1" rstest = "0.23.0" [features] default = ["with-serde"] with-serde = ["serde"] cli = ["clap"] [lib] path = "src/lib.rs" [[bin]] name = "r2rust" path = "src/main.rs"