-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
44 lines (38 loc) · 878 Bytes
/
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
[package]
name = "pysubstringsearch"
version = "0.7.1"
authors = ["Gal Ben David <[email protected]>"]
edition = "2021"
description = "A Python library written in Rust that searches for substrings quickly using a Suffix Array"
readme = "README.md"
repository = "https://github.com/intsights/pysubstringsearch"
homepage = "https://github.com/intsights/pysubstringsearch"
license = "MIT"
keywords = [
"substring",
"pattern",
"search",
"suffix",
"array",
"rust",
"pyo3"
]
[package.metadata.maturin]
[lib]
name = "pysubstringsearch"
crate-type = ["cdylib"]
[dependencies]
ahash = "0.7"
bstr = "0.2"
byteorder = "1"
memchr = "2"
parking_lot = "0.12"
rayon = "1"
[dependencies.pyo3]
version = "0.16.4"
features = ["extension-module"]
[build-dependencies]
cc = { version = "1.0", features = ["parallel"] }
[profile.release]
lto = true
panic = "abort"