rcalc 0.1.2

Glorified calculator with a lexer, parser, and interpreter written in Rust.
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 believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)

[package]
name = "rcalc"
version = "0.1.2"
authors = ["ayazhafiz <ayaz.hafiz.1@gmail.com>"]
exclude = ["Makefile"]
description = "Glorified calculator with a lexer, parser, and interpreter written in Rust."
homepage = "https://github.com/ayazhafiz/rcalc"
readme = "README.md"
keywords = ["calculator", "lexer", "parser", "interpreter", "ast"]
categories = ["command-line-interface", "data-structures", "parser-implementations", "parsing", "text-processing"]
license = "MIT"
repository = "https://github.com/ayazhafiz/rcalc.git"
[profile.test]
opt-level = 3
lto = false
codegen-units = 1
debug = true
debug-assertions = true
rpath = false
panic = "unwind"

[profile.doc]
opt-level = 3
lto = false
codegen-units = 1
debug = true
debug-assertions = true
rpath = false
panic = "unwind"

[profile.bench]
opt-level = 3
lto = false
codegen-units = 1
debug = false
debug-assertions = false
rpath = false
panic = "unwind"

[profile.dev]
opt-level = 0
lto = false
codegen-units = 2
debug = true
debug-assertions = true
rpath = false
panic = "unwind"

[profile.release]
opt-level = 3
lto = false
codegen-units = 1
debug = false
debug-assertions = false
rpath = false
panic = "unwind"

[lib]
name = "rcalc"
path = "src/lib.rs"

[[bin]]
name = "rcalc"
path = "src/main.rs"
doc = false
[dependencies.rustyline]
version = "1.0.0"
[badges.maintenance]
status = "actively-developed"

[badges.travis-ci]
branch = "master"
repository = "ayazhafiz/rcalc"