matchy 0.4.0

Fast database for IP address and pattern matching with rich data storage
Documentation
[[bench]]
harness = false
name = "matchy_bench"
path = "benches/matchy_bench.rs"

[[bin]]
name = "matchy"
path = "src/bin/matchy.rs"

[build-dependencies.cbindgen]
version = "0.29"

[dependencies.anyhow]
version = "1.0"

[dependencies.clap]
features = ["derive", "cargo"]
version = "4.5"

[dependencies.libc]
version = "0.2"

[dependencies.memmap2]
version = "0.9.8"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.serde_json]
version = "1.0"

[dev-dependencies.criterion]
version = "0.7"

[dev-dependencies.proptest]
version = "1.4"

[dev-dependencies.rand]
version = "0.9"

[dev-dependencies.tempfile]
version = "3.8"

[[example]]
name = "build_combined_database"
path = "examples/build_combined_database.rs"

[[example]]
name = "build_ip_database"
path = "examples/build_ip_database.rs"

[[example]]
name = "build_misp_database"
path = "examples/build_misp_database.rs"

[[example]]
name = "combined_query"
path = "examples/combined_query.rs"

[[example]]
name = "cpp_comparison_test"
path = "examples/cpp_comparison_test.rs"

[[example]]
name = "custom_metadata"
path = "examples/custom_metadata.rs"

[[example]]
name = "geoip_query"
path = "examples/geoip_query.rs"

[[example]]
name = "glob_demo"
path = "examples/glob_demo.rs"

[[example]]
name = "incremental_builder"
path = "examples/incremental_builder.rs"

[[example]]
name = "production_test"
path = "examples/production_test.rs"

[[example]]
name = "test_v3_performance"
path = "examples/test_v3_performance.rs"

[lib]
crate-type = ["staticlib", "cdylib", "rlib"]
name = "matchy"
path = "src/lib.rs"

[package]
authors = ["Seth Hall <seth@remor.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
categories = ["network-programming", "database", "algorithms"]
description = "Fast database for IP address and pattern matching with rich data storage"
edition = "2021"
keywords = ["ip", "pattern", "database", "geoip", "matching"]
license = "BSD-2-Clause"
name = "matchy"
readme = "README.md"
repository = "https://github.com/sethhall/matchy"
version = "0.4.0"

[profile.bench]
inherits = "release"

[profile.dev]
debug = 2
opt-level = 0

[profile.release]
codegen-units = 1
lto = true
opt-level = 3
panic = "abort"
strip = false

[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"