-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
26 lines (24 loc) · 958 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "eval-utility"
version = "0.2.0"
edition = "2021"
rust-version = "1.64.0"
description = "Wrapper function of the evaluator crate. Provides python-like built-in functions."
readme = "README.md"
homepage = "https://github.com/floating-floaties/eval-utility/"
repository = "https://github.com/floating-floaties/eval-utility/"
license = "GPL-3.0-only"
keywords = ["expression", "evaluator", "condition", "parse"]
exclude = ["Dockerfile", "target", "docker*", "*.lock", ".*"]
[dependencies]
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0"
chrono = "^0.4"
chrono-tz = { version = "^0.6", features = ["serde"] }
regex = "^1.6"
log = "^0.4"
lazy_static = "1.4.0"
hashbrown = "0.12"
resolver = { git = "https://github.com/floating-floaties/resolver.git" }
inflection-rs = { git = "https://github.com/floating-floaties/inflection-rs.git" }
string-utility = { git = "https://github.com/floating-floaties/string-utility.git" }