-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (27 loc) · 775 Bytes
/
Cargo.toml
File metadata and controls
33 lines (27 loc) · 775 Bytes
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
[package]
name = "sublime_fuzzy"
version = "0.7.0"
authors = ["Benedikt Schatz <schlchtwtrfrnt@gmail.com>"]
description = "Fuzzy matching algorithm based on Sublime Text's string search."
repository = "https://github.com/Schlechtwetterfront/fuzzy-rs"
readme = "README.md"
keywords = ["fuzzy", "match", "search", "text"]
categories = ["text-processing", "algorithms"]
license-file = "LICENSE"
edition = "2024"
[lib]
path = "src/lib.rs"
[[bin]]
name = "sfz"
path = "src/main.rs"
[dependencies]
bumpalo = { version = "3.19.0", features = ["allocator-api2", "collections"] }
hashbrown = "0.15.4"
serde = { version = "1", features = ["derive"], optional = true }
[features]
serde = ["dep:serde"]
[dev-dependencies]
criterion = "0.7"
[[bench]]
name = "bench"
harness = false