-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (39 loc) · 1.05 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "b4s"
version = "0.3.4"
edition.workspace = true
rust-version = "1.64.0"
authors = ["Alex Povel <rust@alexpovel.de>"]
description = "Binary Search Single Sorted String: Perform binary search on a single, delimited string slice of sorted but unevenly sized substrings."
license = "MIT"
repository = "https://github.com/alexpovel/b4s"
readme = "README.md"
documentation = "https://docs.rs/b4s"
keywords = ["search", "string", "str", "uneven"]
categories = ["algorithms"]
include = [
"README.md",
"LICENSE",
"Cargo.toml",
"Cargo.lock",
"src",
# Only include this so the crate compiles; benchmarks won't be runnable because
# required test data isn't included.
"benches/main.rs",
]
[workspace.package]
edition = "2021"
[dependencies]
ascii = "1.1.0"
itertools = "0.11.0"
[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
fst = "0.4.7"
phf = { version = "0.11.1", features = ["macros"] }
rstest = "0.18.1"
trie-rs = "0.1.1"
[workspace]
members = ["fuzz"]
[[bench]]
name = "main"
harness = false