# 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 = "2018" name = "rsc" version = "3.0.0" authors = ["Luke I. Wilson "] description = "A fast calculator for solving scientific and algebraic math equations in strings." readme = "README.md" keywords = [ "scientific", "calculator", "parser", "expression", ] categories = [ "command-line-utilities", "parsing", "science", ] license = "MIT" repository = "https://github.com/fivemoreminix/rsc" [lib] path = "src/lib.rs" [[bin]] name = "rsc" path = "src/bin/main.rs" required-features = ["executable"] [dependencies.colored] version = "2.0" optional = true [dependencies.peekmore] version = "1.3.0" [dependencies.structopt] version = "0.3" optional = true [features] executable = [ "structopt", "colored", ]