jsonfilter/Cargo.toml

18 lines
376 B
TOML
Raw Normal View History

2024-02-09 10:21:27 +01:00
[package]
name = "jsonfilter"
2024-02-09 18:03:31 +01:00
description = "Filter and compare JSON objects"
authors = ["JMARyA <jmarya@hydrar.de>"]
2024-02-09 14:34:12 +01:00
version = "0.2.0"
2024-02-09 10:21:27 +01:00
edition = "2021"
2024-02-09 18:03:31 +01:00
keywords = ["json", "filter"]
license = "MIT"
repository = "https://git.hydrar.de/jmarya/jsonfilter"
2024-02-09 10:21:27 +01:00
[dependencies]
regex = "1.10.3"
serde = "1.0.196"
serde_json = "1.0.113"
2024-02-09 18:03:31 +01:00
[profile.release]
codegen-units = 1
lto = "fat"