ip-extract 0.2.0

High-performance IP address extraction and tagging engine
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "ip-extract"
version = "0.2.0"
authors = ["Eric Hutchins"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance IP address extraction and tagging engine"
homepage = "https://github.com/erichutchins/geoipsed"
documentation = "https://docs.rs/ip-extract"
readme = "README.md"
keywords = [
    "ip",
    "extraction",
    "regex",
    "tagging",
    "parser",
]
categories = [
    "text-processing",
    "network-programming",
]
license = "Unlicense OR MIT"
repository = "https://github.com/erichutchins/geoipsed"

[lib]
name = "ip_extract"
path = "src/lib.rs"

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

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

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

[[bench]]
name = "ip_benchmark"
path = "benches/ip_benchmark.rs"
harness = false

[dependencies.anyhow]
version = "1.0.101"

[dependencies.bstr]
version = "1.12.1"

[dependencies.memchr]
version = "2.7"

[dependencies.regex-automata]
version = "0.4.9"
features = [
    "std",
    "syntax",
    "perf",
    "meta",
    "nfa",
    "dfa-onepass",
    "hybrid",
    "dfa",
    "perf-literal",
]
default-features = false

[dependencies.regex-syntax]
version = "0.8.9"

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

[dependencies.serde_json]
version = "1.0.149"

[dependencies.thiserror]
version = "2.0"

[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]

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

[build-dependencies.regex-automata]
version = "0.4.9"
features = [
    "std",
    "syntax",
    "dfa-build",
    "dfa-search",
    "nfa-thompson",
]