# 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 = "blitztext" version = "0.1.1" authors = ["Praise Oketola "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A library for fast keyword extraction and replacement in strings." readme = "README.md" keywords = [ "keyword", "search", "fuzzy", "trie", "aho-corasick", ] categories = [ "text-processing", "algorithms", ] license = "MIT" repository = "https://github.com/praise2112/blitztext" [profile.release] lto = true [lib] name = "blitztext" crate-type = [ "cdylib", "rlib", ] path = "src/lib.rs" [[bin]] name = "manual_benchmark" path = "src/bin/manual_benchmark.rs" [[example]] name = "basic_usage" path = "examples/basic_usage.rs" [[test]] name = "integration_test" path = "tests/integration_test.rs" [[bench]] name = "benchmark" path = "benches/benchmark.rs" harness = false [dependencies.bincode] version = "1.3.3" [dependencies.pyo3] version = "0.22.2" features = ["extension-module"] [dependencies.rand] version = "0.9.0-alpha.2" [dependencies.rayon] version = "1.10.0" [dependencies.regex] version = "1.10.6" [dependencies.rustc-hash] version = "2.0.0" [dependencies.serde] version = "1.0.206" features = ["derive"] [dev-dependencies.criterion] version = "0.5.1"