-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (35 loc) · 960 Bytes
/
Copy pathCargo.toml
File metadata and controls
39 lines (35 loc) · 960 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
[workspace]
resolver = "2"
members = ["matcher_rs", "matcher_py", "matcher_c", "matcher_java"]
default-members = ["matcher_rs"]
[workspace.package]
authors = ["Foster Guo <f975793771@gmail.com>"]
categories = ["text-processing"]
description = "A high-performance matcher designed to solve LOGICAL and TEXT VARIATIONS problems in word matching, implemented in Rust."
edition = "2024"
homepage = "https://github.com/Lips7/Matcher"
readme = "README.md"
keywords = ["text", "string", "search", "pattern", "multi"]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/Lips7/Matcher"
version = "0.15.5"
[profile.release]
strip = true
opt-level = 3
lto = true
codegen-units = 1
incremental = false
debug = false
debug-assertions = false
[profile.profiling]
inherits = "release"
strip = "none"
debug = "line-tables-only"
[profile.bench]
strip = "none"
opt-level = 3
lto = true
codegen-units = 1
incremental = false
debug = false
debug-assertions = false