14 lines
256 B
TOML
14 lines
256 B
TOML
|
[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" }
|