-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
35 lines (32 loc) · 873 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
[workspace]
resolver = "2"
members = ["matcher_rs", "matcher_py", "matcher_c"]
[workspace.package]
authors = ["Foster Guo <[email protected]>"]
categories = ["text-processing"]
description = "A high-performance matcher designed to solve LOGICAL and TEXT VARIATIONS problems in word matching, implemented in Rust."
edition = "2021"
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.5.6"
[profile.release]
strip = true
opt-level = 3
lto = true
codegen-units = 1
incremental = false
debug = false
debug-assertions = false
overflow-checks = false
[profile.bench]
strip = "none"
opt-level = 3
lto = true
codegen-units = 1
incremental = false
debug = true
debug-assertions = false
overflow-checks = false