1[package] 2publish = false 3name = "aho-corasick-bench" 4version = "0.0.1" 5authors = ["Andrew Gallant <jamslam@gmail.com>"] 6description = "Criterion benchmark suite for aho-corasick." 7homepage = "https://github.com/BurntSushi/aho-corasick" 8repository = "https://github.com/BurntSushi/aho-corasick" 9license = "Unlicense OR MIT" 10edition = "2018" 11 12[lib] 13bench = false 14 15[[bench]] 16name = "aho-corasick" 17harness = false 18path = "src/bench.rs" 19 20[dependencies] 21criterion = "0.3" 22aho-corasick = { version = "*", path = ".." } 23