jftt/l1/string-matcher/Cargo.toml

14 lines
256 B
TOML
Raw Normal View History

2024-10-20 22:19:05 +02:00
[package]
name = "string-matcher"
version = "0.1.0"
edition = "2021"
[profile.release]
panic = "abort"
[dependencies]
string-matcher-lib = { path = "../string-matcher-lib" }
naive = { path = "../naive" }
fa = { path = "../fa" }
kmp = { path = "../kmp" }