-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (36 loc) · 777 Bytes
/
Cargo.toml
File metadata and controls
40 lines (36 loc) · 777 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
34
35
36
37
38
39
40
[package]
name = "hifa"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "hifa-index"
path = "src/indexer.rs"
[[bin]]
name = "hifa-search"
path = "src/searcher.rs"
[dependencies]
# Core indexing with FM-Index
fm-index = "0.3"
# Memory mapping
memmap2 = "0.9"
# Regular expressions
regex = "1.10"
# Parallelism
rayon = "1.8"
# Serialization
serde = { version = "1.0", features = ["derive"] }
bincode = "1.3"
# Command line argument parsing
clap = { version = "4.4", features = ["derive"] }
# Error handling
anyhow = "1.0"
# Progress reporting
indicatif = "0.17"
# File system operations
walkdir = "2.4"
# Fast compression - replaced flate2 with lz4_flex
lz4_flex = "0.11"
memchr = "2.6" # For ultra-fast byte searching
[dev-dependencies]
tempfile = "3.8"
criterion = "0.5"