-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
29 lines (25 loc) · 957 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
27
28
29
[package]
name = "datalogic-rs"
version = "2.0.5"
edition = "2021"
exclude = ["/xsd", "/xml", ".DS_Store", "/target", ".vscode", "generate.sh"]
authors = ["Harishankar Narayanan <nharishankar@gmail.com>"]
license = "Apache-2.0"
description = "A fast, type-safe Rust implementation of JSONLogic for evaluating logical rules as JSON. Perfect for business rules engines and dynamic filtering in Rust applications."
readme = "README.md"
homepage = "https://github.com/Open-Payments/datalogic-rs"
repository = "https://github.com/Open-Payments/datalogic-rs"
keywords = ["rules", "engine", "json", "logic"]
categories = ["data-structures", "development-tools", "parsing"]
[dependencies]
serde_json = "1.0"
thiserror = "1.0"
[dev-dependencies]
criterion = { version = "0.5", default-features = false }
lazy_static = "1.4"
reqwest = { version = "0.11", features = ["blocking"] }
[[bench]]
name = "jsonlogic_bench"
harness = false
[profile.release]
debug = true