forked from likebike/fasteval
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (21 loc) · 742 Bytes
/
Cargo.toml
File metadata and controls
25 lines (21 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "fasteval"
version = "0.2.4"
authors = ["Christopher Sebastian <christopher@likebike.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/likebike/fasteval"
documentation = "https://docs.rs/fasteval/"
description = """Fast evaluation of algebraic expressions"""
keywords = ["evaluate", "math", "algebra", "calculate", "expression"]
categories = ["mathematics", "science", "parser-implementations"]
edition = "2018"
[dependencies]
[profile.bench]
debug = true
lto = true
[features]
default = ["alpha-keywords"]
alpha-keywords = [] # Enable 'NaN', 'inf', 'and', 'or'
unsafe-vars = [] # tinyexpr-style pointer-based variables.
nightly = [] # Enable features that depend on Rust nightly.