mirror of
https://gitee.com/openharmony/third_party_rust_aho-corasick
synced 2024-11-23 07:20:26 +00:00
23 lines
513 B
TOML
23 lines
513 B
TOML
[package]
|
|
publish = false
|
|
name = "aho-corasick-bench"
|
|
version = "0.0.1"
|
|
authors = ["Andrew Gallant <jamslam@gmail.com>"]
|
|
description = "Criterion benchmark suite for aho-corasick."
|
|
homepage = "https://github.com/BurntSushi/aho-corasick"
|
|
repository = "https://github.com/BurntSushi/aho-corasick"
|
|
license = "Unlicense OR MIT"
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
bench = false
|
|
|
|
[[bench]]
|
|
name = "aho-corasick"
|
|
harness = false
|
|
path = "src/bench.rs"
|
|
|
|
[dependencies]
|
|
criterion = "0.3"
|
|
aho-corasick = { version = "*", path = ".." }
|